| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2009 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <LinearLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:paddingTop="8dip" |
| android:paddingLeft="16dip" |
| android:paddingRight="16dip" |
| android:orientation="vertical" |
| android:background="@color/black"> |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="48dip"> |
| |
| <LinearLayout |
| android:id="@+id/tabs" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent"> |
| <TextView |
| android:id="@+id/historytab" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:paddingLeft="32dip" |
| android:paddingRight="32dip" |
| android:textAppearance="?android:attr/textAppearanceMedium" |
| android:gravity="center_vertical" |
| android:text="@string/tab_history" |
| android:drawableLeft="@drawable/ic_tab_history_selected" |
| android:drawablePadding="16dip" /> |
| <ImageView |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:src="@drawable/divider_vert" /> |
| <TextView |
| android:id="@+id/bmtab" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:paddingLeft="32dip" |
| android:paddingRight="32dip" |
| android:textAppearance="?android:attr/textAppearanceMedium" |
| android:gravity="center_vertical" |
| android:text="@string/bookmarks" |
| android:drawableLeft="@drawable/ic_tab_bookmarks_selected" |
| android:drawablePadding="16dip" /> |
| </LinearLayout> |
| |
| <FrameLayout |
| android:id="@+id/header_container" |
| android:layout_width="0dip" |
| android:layout_weight="1" |
| android:layout_height="match_parent" /> |
| |
| <ImageView |
| android:id="@+id/seperate_select_add" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:paddingRight="16dip" |
| android:paddingLeft="16dip" |
| android:src="@drawable/divider_vert" /> |
| |
| <TextView |
| android:id="@+id/addbm" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:text="@string/add_new_bookmark" |
| android:textAppearance="?android:attr/textAppearanceMedium" |
| android:gravity="center_vertical" |
| android:background="@null" |
| android:drawableLeft="@drawable/ic_favorite_off_normal" |
| android:drawablePadding="16dip" /> |
| |
| </LinearLayout> |
| <FrameLayout |
| android:id="@+id/fragment" |
| android:paddingTop="8dip" |
| android:layout_width="match_parent" |
| android:layout_height="0dip" |
| android:layout_weight="1.0" /> |
| </LinearLayout> |