blob: 8a5e308fbb442ac59e4be1456a0d66bef9104bbd [file] [log] [blame]
Michael Kolbfe251992010-07-08 15:41:55 -07001<?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright 2010, The Android Open Source Project Licensed under the
4 Apache License, Version 2.0 (the "License"); you may not use this file
5 except in compliance with the License. You may obtain a copy of the
6 License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
7 applicable law or agreed to in writing, software distributed under the
8 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9 CONDITIONS OF ANY KIND, either express or implied. See the License for
10 the specific language governing permissions and limitations under the
11 License.
12 -->
Michael Kolbed217742010-08-10 17:52:34 -070013<merge
Michael Kolbfe251992010-07-08 15:41:55 -070014 xmlns:android="http://schemas.android.com/apk/res/android"
Michael Kolbc7485ae2010-09-03 10:10:58 -070015 android:layout_width="wrap_content"
Michael Kolba2b2ba82010-08-04 17:54:03 -070016 android:layout_height="match_parent"
Michael Kolbfe251992010-07-08 15:41:55 -070017 android:gravity="center_vertical"
Michael Kolb2b5a13a2010-12-09 14:13:42 -080018 android:orientation="horizontal">
Michael Kolbfe251992010-07-08 15:41:55 -070019 <ImageView
Michael Kolbae62fd42010-08-18 16:33:28 -070020 android:id="@+id/incognito"
Michael Kolb49f15832011-01-25 15:02:27 -080021 android:layout_width="wrap_content"
22 android:layout_height="match_parent"
Michael Kolbc7485ae2010-09-03 10:10:58 -070023 android:gravity="center_vertical"
Justin Hodc6cbb72011-01-24 15:14:54 -080024 android:src="@drawable/ic_incognito_holo_dark"
Michael Kolb30adae62011-07-29 13:37:05 -070025 android:contentDescription="@string/accessibility_state_incognito"
Michael Kolbae62fd42010-08-18 16:33:28 -070026 android:visibility="gone" />
27 <ImageView
John Reck541f55a2011-06-07 16:34:43 -070028 android:id="@+id/snapshot"
29 android:layout_width="wrap_content"
30 android:layout_height="match_parent"
31 android:gravity="center_vertical"
John Reck0f602f32011-07-07 15:38:43 -070032 android:src="@drawable/ic_search_category_history"
Michael Kolb30adae62011-07-29 13:37:05 -070033 android:contentDescription="@string/accessibility_state_frozen"
John Reck541f55a2011-06-07 16:34:43 -070034 android:visibility="gone" />
35 <ImageView
Michael Kolbfe251992010-07-08 15:41:55 -070036 android:id="@+id/favicon"
37 android:layout_width="20dip"
38 android:layout_height="20dip"
Michael Kolb49f15832011-01-25 15:02:27 -080039 android:layout_marginLeft="8dip"
40 android:layout_marginRight="8dip" />
Michael Kolbfe251992010-07-08 15:41:55 -070041 <ImageView
42 android:id="@+id/lock"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
Michael Kolbfe251992010-07-08 15:41:55 -070045 android:visibility="gone" />
46 <TextView
47 android:id="@+id/title"
Michael Kolba2b2ba82010-08-04 17:54:03 -070048 android:layout_height="match_parent"
Michael Kolbfe251992010-07-08 15:41:55 -070049 android:layout_width="0dip"
50 android:layout_weight="1.0"
Michael Kolb49f15832011-01-25 15:02:27 -080051 android:paddingLeft="8dip"
52 android:paddingRight="8dip"
Michael Kolba2b2ba82010-08-04 17:54:03 -070053 android:textAppearance="?android:attr/textAppearanceSmall"
Michael Kolbc7485ae2010-09-03 10:10:58 -070054 android:textColor="@color/white"
55 android:gravity="center_vertical"
56 android:scrollHorizontally="true"
Michael Kolbc7485ae2010-09-03 10:10:58 -070057 android:lines="1"
58 android:singleLine="true" />
59 <ImageButton
Michael Kolbfe251992010-07-08 15:41:55 -070060 android:id="@+id/close"
Michael Kolb5a72f182011-01-13 20:35:06 -080061 android:background="?android:attr/selectableItemBackground"
Michael Kolbfe251992010-07-08 15:41:55 -070062 android:layout_width="wrap_content"
63 android:layout_height="wrap_content"
Michael Kolb30adae62011-07-29 13:37:05 -070064 android:contentDescription="@string/accessibility_button_closetab"
Michael Kolbc7485ae2010-09-03 10:10:58 -070065 android:src="@drawable/ic_tab_close" />
Michael Kolbed217742010-08-10 17:52:34 -070066</merge>