blob: eb5059c9e14429d4fa0cabab62bfa0dd8772fce1 [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"
65 android:layout_weight="1" />
66 <LinearLayout
67 android:id="@+id/navbar"
68 android:orientation="horizontal"
69 android:layout_width="match_parent"
70 android:layout_height="44dip"
71 android:background="#80404040">
72 <ImageButton
73 android:id="@+id/back"
74 android:layout_width="0dip"
75 android:layout_weight="0.25"
76 android:layout_height="match_parent"
77 android:src="@drawable/ic_back_holo_dark"
78 style="@style/HoloButton" />
79 <ImageButton
80 android:id="@+id/refresh"
81 android:layout_width="0dip"
82 android:layout_weight="0.25"
83 android:layout_height="match_parent"
84 android:src="@drawable/ic_refresh_holo_dark"
85 style="@style/HoloButton" />
86 <ImageButton
87 android:id="@+id/forward"
88 android:layout_width="0dip"
89 android:layout_weight="0.25"
90 android:layout_height="match_parent"
91 android:src="@drawable/ic_forward_holo_dark"
92 style="@style/HoloButton" />
93 <ImageButton
94 android:id="@+id/bookmarks"
95 android:layout_width="0dip"
96 android:layout_weight="0.25"
97 android:layout_height="match_parent"
98 android:src="@drawable/ic_bookmarks_history_holo_dark"
99 style="@style/HoloButton" />
100 </LinearLayout>
101</LinearLayout>