blob: a3a50843583851a9755773cb1165037c7e94a0ca [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">
John Reck608baa72010-11-24 10:32:28 -080025 <LinearLayout
Michael Kolb370a4f32010-10-06 10:45:32 -070026 android:layout_width="match_parent"
27 android:layout_height="48dip">
John Reck608baa72010-11-24 10:32:28 -080028
Michael Kolb370a4f32010-10-06 10:45:32 -070029 <LinearLayout
30 android:id="@+id/tabs"
31 android:layout_width="wrap_content"
John Reck608baa72010-11-24 10:32:28 -080032 android:layout_height="match_parent">
Michael Kolb370a4f32010-10-06 10:45:32 -070033 <TextView
34 android:id="@+id/historytab"
35 android:layout_width="wrap_content"
36 android:layout_height="match_parent"
37 android:paddingLeft="32dip"
38 android:paddingRight="32dip"
39 android:textAppearance="?android:attr/textAppearanceMedium"
40 android:gravity="center_vertical"
41 android:text="@string/tab_history"
42 android:drawableLeft="@drawable/ic_tab_history_selected"
43 android:drawablePadding="16dip" />
44 <ImageView
45 android:layout_width="wrap_content"
46 android:layout_height="match_parent"
47 android:src="@drawable/divider_vert" />
48 <TextView
49 android:id="@+id/bmtab"
50 android:layout_width="wrap_content"
51 android:layout_height="match_parent"
52 android:paddingLeft="32dip"
53 android:paddingRight="32dip"
54 android:textAppearance="?android:attr/textAppearanceMedium"
55 android:gravity="center_vertical"
56 android:text="@string/bookmarks"
57 android:drawableLeft="@drawable/ic_tab_bookmarks_selected"
58 android:drawablePadding="16dip" />
Michael Kolb370a4f32010-10-06 10:45:32 -070059 </LinearLayout>
John Reck608baa72010-11-24 10:32:28 -080060
61 <FrameLayout
62 android:id="@+id/header_container"
63 android:layout_width="0dip"
64 android:layout_weight="1"
65 android:layout_height="match_parent" />
66
67 <ImageView
68 android:id="@+id/seperate_select_add"
69 android:layout_width="wrap_content"
70 android:layout_height="match_parent"
71 android:paddingRight="16dip"
72 android:paddingLeft="16dip"
73 android:src="@drawable/divider_vert" />
74
Michael Kolb370a4f32010-10-06 10:45:32 -070075 <TextView
76 android:id="@+id/addbm"
77 android:layout_width="wrap_content"
78 android:layout_height="match_parent"
79 android:text="@string/add_new_bookmark"
Michael Kolb370a4f32010-10-06 10:45:32 -070080 android:textAppearance="?android:attr/textAppearanceMedium"
81 android:gravity="center_vertical"
82 android:background="@null"
83 android:drawableLeft="@drawable/ic_favorite_off_normal"
84 android:drawablePadding="16dip" />
John Reck608baa72010-11-24 10:32:28 -080085
86 </LinearLayout>
Michael Kolb370a4f32010-10-06 10:45:32 -070087 <FrameLayout
88 android:id="@+id/fragment"
89 android:paddingTop="8dip"
90 android:layout_width="match_parent"
91 android:layout_height="0dip"
92 android:layout_weight="1.0" />
Jeff Hamilton64144e42010-08-18 16:31:59 -050093</LinearLayout>