blob: 8ff4be3ebe071a9b52dac80e90852d44575b81f6 [file] [log] [blame]
Michael Kolbf2055602011-04-09 17:20:03 -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 Kolbf2055602011-04-09 17:20:03 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/nav_screen"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
Michael Kolb9829b432011-06-04 13:29:00 -070022 android:orientation="vertical"
23 android:background="@drawable/nav_screen_bg">
24 <com.android.browser.NavTabGallery
25 android:id="@+id/scroller"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:orientation="vertical" />
Michael Kolbf2055602011-04-09 17:20:03 -070029 <LinearLayout
Michael Kolb2814a362011-05-19 15:49:41 -070030 android:id="@+id/tabbar"
31 android:orientation="horizontal"
Michael Kolbf2055602011-04-09 17:20:03 -070032 android:layout_width="match_parent"
33 android:layout_height="44dip"
Michael Kolb14019dd2011-06-21 14:57:14 -070034 android:gravity="right"
Michael Kolb9829b432011-06-04 13:29:00 -070035 android:background="#C0404040">
Michael Kolbf2055602011-04-09 17:20:03 -070036 <ImageButton
37 android:id="@+id/newtab"
Michael Kolb14019dd2011-06-21 14:57:14 -070038 android:layout_width="wrap_content"
Michael Kolbf2055602011-04-09 17:20:03 -070039 android:layout_height="match_parent"
Michael Kolb14019dd2011-06-21 14:57:14 -070040 android:paddingLeft="16dip"
41 android:paddingRight="16dip"
Michael Kolbf2055602011-04-09 17:20:03 -070042 style="@style/HoloButton"
43 android:gravity="center_vertical"
Michael Kolb30adae62011-07-29 13:37:05 -070044 android:contentDescription="@string/accessibility_button_newtab"
Michael Kolbf2055602011-04-09 17:20:03 -070045 android:src="@drawable/ic_new_window_holo_dark" />
46 <ImageButton
47 android:id="@+id/newincognito"
Michael Kolb14019dd2011-06-21 14:57:14 -070048 android:layout_width="wrap_content"
Michael Kolbf2055602011-04-09 17:20:03 -070049 android:layout_height="match_parent"
Michael Kolb14019dd2011-06-21 14:57:14 -070050 android:paddingLeft="16dip"
51 android:paddingRight="16dip"
Michael Kolbf2055602011-04-09 17:20:03 -070052 style="@style/HoloButton"
53 android:gravity="center_vertical"
Michael Kolb30adae62011-07-29 13:37:05 -070054 android:contentDescription="@string/accessibility_button_newincognitotab"
Michael Kolbf2055602011-04-09 17:20:03 -070055 android:src="@drawable/ic_new_incognito_holo_dark" />
56 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070057 android:id="@+id/bookmarks"
Michael Kolb14019dd2011-06-21 14:57:14 -070058 android:layout_width="wrap_content"
Michael Kolbf2055602011-04-09 17:20:03 -070059 android:layout_height="match_parent"
Michael Kolb14019dd2011-06-21 14:57:14 -070060 android:paddingLeft="16dip"
61 android:paddingRight="16dip"
Michael Kolb30adae62011-07-29 13:37:05 -070062 android:contentDescription="@string/accessibility_button_bookmarks"
Michael Kolb2814a362011-05-19 15:49:41 -070063 android:src="@drawable/ic_bookmarks_history_holo_dark"
64 style="@style/HoloButton" />
Michael Kolbf2055602011-04-09 17:20:03 -070065 <ImageButton
66 android:id="@+id/more"
Michael Kolb14019dd2011-06-21 14:57:14 -070067 android:layout_width="wrap_content"
Michael Kolbf2055602011-04-09 17:20:03 -070068 android:layout_height="match_parent"
Michael Kolb14019dd2011-06-21 14:57:14 -070069 android:paddingLeft="16dip"
70 android:paddingRight="16dip"
Michael Kolbf2055602011-04-09 17:20:03 -070071 style="@style/HoloButton"
72 android:gravity="center_vertical"
Michael Kolb30adae62011-07-29 13:37:05 -070073 android:contentDescription="@string/accessibility_button_more"
Michael Kolbf2055602011-04-09 17:20:03 -070074 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
75 </LinearLayout>
Michael Kolb2814a362011-05-19 15:49:41 -070076</RelativeLayout>