blob: e4eb8006ed8395b16baf489839cb59a19e43f9fe [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 Kolb2814a362011-05-19 15:49:41 -070021 android:layout_height="match_parent" >
Michael Kolbff6c36b2011-05-04 14:21:34 -070022 <LinearLayout
Michael Kolb2814a362011-05-19 15:49:41 -070023 android:id="@+id/tabbar"
Michael Kolbff6c36b2011-05-04 14:21:34 -070024 android:orientation="vertical"
Michael Kolb2814a362011-05-19 15:49:41 -070025 android:layout_width="44dip"
26 android:layout_height="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070027 android:layout_alignParentRight="true"
Michael Kolbff6c36b2011-05-04 14:21:34 -070028 android:background="#80404040">
29 <ImageButton
30 android:id="@+id/newtab"
31 android:layout_height="0dip"
32 android:layout_weight="0.25"
33 android:layout_width="match_parent"
34 style="@style/HoloButton"
35 android:gravity="center_vertical"
36 android:src="@drawable/ic_new_window_holo_dark" />
37 <ImageButton
38 android:id="@+id/newincognito"
39 android:layout_height="0dip"
40 android:layout_weight="0.25"
41 android:layout_width="match_parent"
42 style="@style/HoloButton"
43 android:gravity="center_vertical"
44 android:src="@drawable/ic_new_incognito_holo_dark" />
45 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070046 android:id="@+id/bookmarks"
Michael Kolbff6c36b2011-05-04 14:21:34 -070047 android:layout_height="0dip"
48 android:layout_weight="0.25"
49 android:layout_width="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070050 android:src="@drawable/ic_bookmarks_history_holo_dark"
51 style="@style/HoloButton" />
Michael Kolbff6c36b2011-05-04 14:21:34 -070052 <ImageButton
53 android:id="@+id/more"
54 android:layout_height="0dip"
55 android:layout_weight="0.25"
56 android:layout_width="match_parent"
57 style="@style/HoloButton"
58 android:gravity="center_vertical"
59 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
60 </LinearLayout>
Michael Kolb2814a362011-05-19 15:49:41 -070061 <com.android.browser.NavTabScroller
62 android:id="@+id/scroller"
63 android:layout_width="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070064 android:layout_height="match_parent"
Michael Kolb4bd767d2011-05-27 11:33:55 -070065 android:layout_toLeftOf="@id/tabbar" />
Michael Kolb2814a362011-05-19 15:49:41 -070066</RelativeLayout>