blob: a89a2b98d742b75495bf98c0e5cff54f54208c4d [file] [log] [blame]
Jeff Hamilton64144e42010-08-18 16:31:59 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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-->
Michael Kolb370a4f32010-10-06 10:45:32 -070016<LinearLayout
17 xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Hamilton64144e42010-08-18 16:31:59 -050018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Michael Kolb370a4f32010-10-06 10:45:32 -070020 android:paddingTop="8dip"
21 android:paddingLeft="16dip"
22 android:paddingRight="16dip"
23 android:orientation="vertical"
24 android:background="@color/black">
25 <RelativeLayout
26 android:id="@+id/bar"
27 android:layout_width="match_parent"
28 android:layout_height="48dip">
29 <LinearLayout
30 android:id="@+id/tabs"
31 android:layout_width="wrap_content"
32 android:layout_height="match_parent"
33 android:paddingLeft="16dip"
34 android:paddingRight="16dip">
35 <TextView
36 android:id="@+id/historytab"
37 android:layout_width="wrap_content"
38 android:layout_height="match_parent"
39 android:paddingLeft="32dip"
40 android:paddingRight="32dip"
41 android:textAppearance="?android:attr/textAppearanceMedium"
42 android:gravity="center_vertical"
43 android:text="@string/tab_history"
44 android:drawableLeft="@drawable/ic_tab_history_selected"
45 android:drawablePadding="16dip" />
46 <ImageView
47 android:layout_width="wrap_content"
48 android:layout_height="match_parent"
49 android:src="@drawable/divider_vert" />
50 <TextView
51 android:id="@+id/bmtab"
52 android:layout_width="wrap_content"
53 android:layout_height="match_parent"
54 android:paddingLeft="32dip"
55 android:paddingRight="32dip"
56 android:textAppearance="?android:attr/textAppearanceMedium"
57 android:gravity="center_vertical"
58 android:text="@string/bookmarks"
59 android:drawableLeft="@drawable/ic_tab_bookmarks_selected"
60 android:drawablePadding="16dip" />
61 <com.android.browser.BreadCrumbView
62 android:id="@+id/crumbs"
63 android:layout_width="wrap_content"
64 android:layout_height="match_parent"
65 android:paddingLeft="16dip"
66 android:paddingRight="16dip" />
67 </LinearLayout>
68 <TextView
69 android:id="@+id/addbm"
70 android:layout_width="wrap_content"
71 android:layout_height="match_parent"
72 android:text="@string/add_new_bookmark"
73 android:layout_alignParentRight="true"
74 android:textAppearance="?android:attr/textAppearanceMedium"
75 android:gravity="center_vertical"
76 android:background="@null"
77 android:drawableLeft="@drawable/ic_favorite_off_normal"
78 android:drawablePadding="16dip" />
79 </RelativeLayout>
80 <FrameLayout
81 android:id="@+id/fragment"
82 android:paddingTop="8dip"
83 android:layout_width="match_parent"
84 android:layout_height="0dip"
85 android:layout_weight="1.0" />
Jeff Hamilton64144e42010-08-18 16:31:59 -050086</LinearLayout>