blob: 21701549670d921aad7a19e721214c16fd377c43 [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
17<LinearLayout
18 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
24 android:id="@+id/navtop"
25 android:layout_width="match_parent"
26 android:layout_height="44dip"
27 android:background="#80404040">
28 <ImageButton
29 android:id="@+id/newtab"
30 android:layout_width="0dip"
31 android:layout_weight="0.25"
32 android:layout_height="match_parent"
33 style="@style/HoloButton"
34 android:gravity="center_vertical"
35 android:src="@drawable/ic_new_window_holo_dark" />
36 <ImageButton
37 android:id="@+id/newincognito"
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_incognito_holo_dark" />
44 <ImageButton
45 android:id="@+id/tabs"
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_windows_holo_dark" />
52 <ImageButton
53 android:id="@+id/more"
54 android:layout_width="0dip"
55 android:layout_weight="0.25"
56 android:layout_height="match_parent"
57 style="@style/HoloButton"
58 android:gravity="center_vertical"
59 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
60 </LinearLayout>
61 <FrameLayout
62 android:id="@+id/galleryholder"
63 android:layout_width="match_parent"
64 android:layout_height="0dip"
John Reckadc921f2011-04-27 10:11:03 -070065 android:layout_weight="1"
66 android:paddingTop="5dp"
67 android:paddingBottom="5dp" />
Michael Kolbf2055602011-04-09 17:20:03 -070068 <LinearLayout
69 android:id="@+id/navbar"
70 android:orientation="horizontal"
71 android:layout_width="match_parent"
72 android:layout_height="44dip"
73 android:background="#80404040">
74 <ImageButton
75 android:id="@+id/back"
76 android:layout_width="0dip"
77 android:layout_weight="0.25"
78 android:layout_height="match_parent"
79 android:src="@drawable/ic_back_holo_dark"
80 style="@style/HoloButton" />
81 <ImageButton
82 android:id="@+id/refresh"
83 android:layout_width="0dip"
84 android:layout_weight="0.25"
85 android:layout_height="match_parent"
86 android:src="@drawable/ic_refresh_holo_dark"
87 style="@style/HoloButton" />
88 <ImageButton
89 android:id="@+id/forward"
90 android:layout_width="0dip"
91 android:layout_weight="0.25"
92 android:layout_height="match_parent"
93 android:src="@drawable/ic_forward_holo_dark"
94 style="@style/HoloButton" />
95 <ImageButton
96 android:id="@+id/bookmarks"
97 android:layout_width="0dip"
98 android:layout_weight="0.25"
99 android:layout_height="match_parent"
100 android:src="@drawable/ic_bookmarks_history_holo_dark"
101 style="@style/HoloButton" />
102 </LinearLayout>
103</LinearLayout>