blob: 0186b6f333ee9b5c1ad000fd5c2390be65efb3f1 [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
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="horizontal">
23 <LinearLayout
24 android:id="@+id/navtop"
25 android:layout_height="match_parent"
26 android:layout_width="44dip"
27 android:orientation="vertical"
28 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
46 android:id="@+id/tabs"
47 android:layout_height="0dip"
48 android:layout_weight="0.25"
49 android:layout_width="match_parent"
50 style="@style/HoloButton"
51 android:gravity="center_vertical"
52 android:src="@drawable/ic_windows_holo_dark" />
53 <ImageButton
54 android:id="@+id/more"
55 android:layout_height="0dip"
56 android:layout_weight="0.25"
57 android:layout_width="match_parent"
58 style="@style/HoloButton"
59 android:gravity="center_vertical"
60 android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" />
61 </LinearLayout>
62 <FrameLayout
63 android:id="@+id/galleryholder"
64 android:layout_height="match_parent"
65 android:layout_width="0dip"
66 android:layout_weight="1"
67 android:paddingTop="5dp"
68 android:paddingBottom="5dp" />
69 <LinearLayout
70 android:id="@+id/navbar"
71 android:layout_height="match_parent"
72 android:layout_width="44dip"
73 android:orientation="vertical"
74 android:background="#80404040">
75 <ImageButton
76 android:id="@+id/back"
77 android:layout_width="match_parent"
78 android:layout_weight="0.25"
79 android:layout_height="0dip"
80 android:src="@drawable/ic_back_holo_dark"
81 style="@style/HoloButton" />
82 <ImageButton
83 android:id="@+id/refresh"
84 android:layout_width="match_parent"
85 android:layout_weight="0.25"
86 android:layout_height="0dip"
87 android:src="@drawable/ic_refresh_holo_dark"
88 style="@style/HoloButton" />
89 <ImageButton
90 android:id="@+id/forward"
91 android:layout_width="match_parent"
92 android:layout_weight="0.25"
93 android:layout_height="0dip"
94 android:src="@drawable/ic_forward_holo_dark"
95 style="@style/HoloButton" />
96 <ImageButton
97 android:id="@+id/bookmarks"
98 android:layout_width="match_parent"
99 android:layout_weight="0.25"
100 android:layout_height="0dip"
101 android:src="@drawable/ic_bookmarks_history_holo_dark"
102 style="@style/HoloButton" />
103 </LinearLayout>
104</LinearLayout>