blob: fdadd6a68162ff562c752442be543b70f3625905 [file] [log] [blame]
Michael Kolbff6c36b2011-05-04 14:21:34 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Michael Kolb2814a362011-05-19 15:49:41 -070017<RelativeLayout
Michael Kolbff6c36b2011-05-04 14:21:34 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/nav_screen"
20 android:layout_width="match_parent"
Michael Kolb9829b432011-06-04 13:29:00 -070021 android:layout_height="match_parent"
Peter Ngdf4cc0c2011-09-22 13:13:08 -070022 android:background="@drawable/browser_background_holo">
Michael Kolba3194d02011-09-07 11:23:51 -070023 <com.android.browser.NavTabScroller
24 android:id="@+id/scroller"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent" />
Michael Kolbff6c36b2011-05-04 14:21:34 -070027 <LinearLayout
Michael Kolb2814a362011-05-19 15:49:41 -070028 android:id="@+id/tabbar"
Michael Kolb9829b432011-06-04 13:29:00 -070029 android:orientation="horizontal"
30 android:layout_width="match_parent"
Michael Kolba3194d02011-09-07 11:23:51 -070031 android:layout_height="@dimen/toolbar_height"
32 android:layout_gravity="top"
Michael Kolb14019dd2011-06-21 14:57:14 -070033 android:gravity="right"
Peter Ngdf4cc0c2011-09-22 13:13:08 -070034 android:background="#CC0d0d0d">
Michael Kolbff6c36b2011-05-04 14:21:34 -070035 <ImageButton
36 android:id="@+id/newtab"
Michael Kolb14019dd2011-06-21 14:57:14 -070037 android:layout_width="wrap_content"
Michael Kolb9829b432011-06-04 13:29:00 -070038 android:layout_height="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070039 style="@style/HoloButton"
40 android:gravity="center_vertical"
Michael Kolb30adae62011-07-29 13:37:05 -070041 android:contentDescription="@string/accessibility_button_newtab"
Michael Kolbff6c36b2011-05-04 14:21:34 -070042 android:src="@drawable/ic_new_window_holo_dark" />
43 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070044 android:id="@+id/bookmarks"
Michael Kolb14019dd2011-06-21 14:57:14 -070045 android:layout_width="wrap_content"
Michael Kolb9829b432011-06-04 13:29:00 -070046 android:layout_height="match_parent"
Michael Kolb30adae62011-07-29 13:37:05 -070047 android:contentDescription="@string/accessibility_button_bookmarks"
Michael Kolb2814a362011-05-19 15:49:41 -070048 android:src="@drawable/ic_bookmarks_history_holo_dark"
49 style="@style/HoloButton" />
Michael Kolbff6c36b2011-05-04 14:21:34 -070050 <ImageButton
51 android:id="@+id/more"
Michael Kolb14019dd2011-06-21 14:57:14 -070052 android:layout_width="wrap_content"
Michael Kolb9829b432011-06-04 13:29:00 -070053 android:layout_height="match_parent"
Michael Kolb7bdee0b2011-08-01 11:55:38 -070054 android:paddingLeft="8dip"
55 android:paddingRight="8dip"
Michael Kolbff6c36b2011-05-04 14:21:34 -070056 style="@style/HoloButton"
57 android:gravity="center_vertical"
Michael Kolb30adae62011-07-29 13:37:05 -070058 android:contentDescription="@string/accessibility_button_more"
Michael Kolbe5d7a662011-08-02 15:30:39 -070059 android:src="@drawable/ic_menu_overflow" />
Michael Kolbff6c36b2011-05-04 14:21:34 -070060 </LinearLayout>
Michael Kolb2814a362011-05-19 15:49:41 -070061</RelativeLayout>