blob: cf2e144af8c43633b4ccc91ac0b20e207ef425c2 [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"
22 android:background="@drawable/nav_screen_bg" >
Michael Kolbff6c36b2011-05-04 14:21:34 -070023 <LinearLayout
Michael Kolb2814a362011-05-19 15:49:41 -070024 android:id="@+id/tabbar"
Michael Kolb9829b432011-06-04 13:29:00 -070025 android:orientation="horizontal"
26 android:layout_width="match_parent"
27 android:layout_height="44dip"
28 android:layout_alignParentBottom="true"
29 android:background="#C0404040">
Michael Kolbff6c36b2011-05-04 14:21:34 -070030 <ImageButton
31 android:id="@+id/newtab"
Michael Kolb9829b432011-06-04 13:29:00 -070032 android:layout_width="0dip"
Michael Kolbff6c36b2011-05-04 14:21:34 -070033 android:layout_weight="0.25"
Michael Kolb9829b432011-06-04 13:29:00 -070034 android:layout_height="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070035 style="@style/HoloButton"
36 android:gravity="center_vertical"
37 android:src="@drawable/ic_new_window_holo_dark" />
38 <ImageButton
39 android:id="@+id/newincognito"
Michael Kolb9829b432011-06-04 13:29:00 -070040 android:layout_width="0dip"
Michael Kolbff6c36b2011-05-04 14:21:34 -070041 android:layout_weight="0.25"
Michael Kolb9829b432011-06-04 13:29:00 -070042 android:layout_height="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070043 style="@style/HoloButton"
44 android:gravity="center_vertical"
45 android:src="@drawable/ic_new_incognito_holo_dark" />
46 <ImageButton
Michael Kolb2814a362011-05-19 15:49:41 -070047 android:id="@+id/bookmarks"
Michael Kolb9829b432011-06-04 13:29:00 -070048 android:layout_width="0dip"
Michael Kolbff6c36b2011-05-04 14:21:34 -070049 android:layout_weight="0.25"
Michael Kolb9829b432011-06-04 13:29:00 -070050 android:layout_height="match_parent"
Michael Kolb2814a362011-05-19 15:49:41 -070051 android:src="@drawable/ic_bookmarks_history_holo_dark"
52 style="@style/HoloButton" />
Michael Kolbff6c36b2011-05-04 14:21:34 -070053 <ImageButton
54 android:id="@+id/more"
Michael Kolb9829b432011-06-04 13:29:00 -070055 android:layout_width="0dip"
Michael Kolbff6c36b2011-05-04 14:21:34 -070056 android:layout_weight="0.25"
Michael Kolb9829b432011-06-04 13:29:00 -070057 android:layout_height="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070058 style="@style/HoloButton"
59 android:gravity="center_vertical"
60 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
61 </LinearLayout>
Michael Kolb9829b432011-06-04 13:29:00 -070062 <com.android.browser.NavTabGallery
Michael Kolb2814a362011-05-19 15:49:41 -070063 android:id="@+id/scroller"
64 android:layout_width="match_parent"
Michael Kolbff6c36b2011-05-04 14:21:34 -070065 android:layout_height="match_parent"
Michael Kolb9829b432011-06-04 13:29:00 -070066 android:layout_above="@id/tabbar" />
Michael Kolb2814a362011-05-19 15:49:41 -070067</RelativeLayout>