blob: fee45b10ae785148a8055b277b2239d1c7fc76e1 [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 Kolb9829b432011-06-04 13:29:00 -070034 android:background="#C0404040">
Michael Kolbf2055602011-04-09 17:20:03 -070035 <ImageButton
36 android:id="@+id/newtab"
37 android:layout_width="0dip"
38 android:layout_weight="0.25"
39 android:layout_height="match_parent"
40 style="@style/HoloButton"
41 android:gravity="center_vertical"
42 android:src="@drawable/ic_new_window_holo_dark" />
43 <ImageButton
44 android:id="@+id/newincognito"
45 android:layout_width="0dip"
46 android:layout_weight="0.25"
47 android:layout_height="match_parent"
48 style="@style/HoloButton"
49 android:gravity="center_vertical"
50 android:src="@drawable/ic_new_incognito_holo_dark" />
51 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070052 android:id="@+id/bookmarks"
Michael Kolbf2055602011-04-09 17:20:03 -070053 android:layout_width="0dip"
54 android:layout_weight="0.25"
55 android:layout_height="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070056 android:src="@drawable/ic_bookmarks_history_holo_dark"
57 style="@style/HoloButton" />
Michael Kolbf2055602011-04-09 17:20:03 -070058 <ImageButton
59 android:id="@+id/more"
60 android:layout_width="0dip"
61 android:layout_weight="0.25"
62 android:layout_height="match_parent"
63 style="@style/HoloButton"
64 android:gravity="center_vertical"
65 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
66 </LinearLayout>
Michael Kolb2814a362011-05-19 15:49:41 -070067</RelativeLayout>