blob: 82f783b0f126447f03549c680645f6138b285d3b [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"
22 android:orientation="vertical">
23 <LinearLayout
Michael Kolb2814a362011-05-19 15:49:41 -070024 android:id="@+id/titlebar"
25 android:orientation="horizontal"
26 android:layout_width="match_parent"
27 android:layout_height="@dimen/toolbar_height"
28 android:background="@drawable/bg_urlbar" />
29 <LinearLayout
30 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 Kolb2814a362011-05-19 15:49:41 -070034 android:layout_alignParentBottom="true"
Michael Kolbf2055602011-04-09 17:20:03 -070035 android:background="#80404040">
36 <ImageButton
37 android:id="@+id/newtab"
38 android:layout_width="0dip"
39 android:layout_weight="0.25"
40 android:layout_height="match_parent"
41 style="@style/HoloButton"
42 android:gravity="center_vertical"
43 android:src="@drawable/ic_new_window_holo_dark" />
44 <ImageButton
45 android:id="@+id/newincognito"
46 android:layout_width="0dip"
47 android:layout_weight="0.25"
48 android:layout_height="match_parent"
49 style="@style/HoloButton"
50 android:gravity="center_vertical"
51 android:src="@drawable/ic_new_incognito_holo_dark" />
52 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070053 android:id="@+id/bookmarks"
Michael Kolbf2055602011-04-09 17:20:03 -070054 android:layout_width="0dip"
55 android:layout_weight="0.25"
56 android:layout_height="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070057 android:src="@drawable/ic_bookmarks_history_holo_dark"
58 style="@style/HoloButton" />
Michael Kolbf2055602011-04-09 17:20:03 -070059 <ImageButton
60 android:id="@+id/more"
61 android:layout_width="0dip"
62 android:layout_weight="0.25"
63 android:layout_height="match_parent"
64 style="@style/HoloButton"
65 android:gravity="center_vertical"
66 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
67 </LinearLayout>
Michael Kolb2814a362011-05-19 15:49:41 -070068 <com.android.browser.NavTabScroller
69 android:id="@+id/scroller"
Michael Kolbf2055602011-04-09 17:20:03 -070070 android:layout_width="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070071 android:layout_height="match_parent"
72 android:layout_above="@id/tabbar"
73 android:paddingTop="0dp"
74 android:paddingBottom="10dp" />
75</RelativeLayout>