blob: a2da03d19fc0b23b257709101216fd2278b4ead5 [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 Kolba2b2ba82010-08-04 17:54:03 -070018 android:orientation="horizontal"
Michael Kolbc7485ae2010-09-03 10:10:58 -070019 android:background="@drawable/tab_background">
Michael Kolbfe251992010-07-08 15:41:55 -070020 <ImageView
Michael Kolbae62fd42010-08-18 16:33:28 -070021 android:id="@+id/incognito"
Michael Kolbc7485ae2010-09-03 10:10:58 -070022 android:layout_width="16dip"
23 android:layout_height="16dip"
Michael Kolbae62fd42010-08-18 16:33:28 -070024 android:layout_marginLeft="3dip"
Michael Kolbc7485ae2010-09-03 10:10:58 -070025 android:gravity="center_vertical"
26 android:src="@drawable/fav_incognito"
Michael Kolbae62fd42010-08-18 16:33:28 -070027 android:visibility="gone" />
28 <ImageView
Michael Kolbfe251992010-07-08 15:41:55 -070029 android:id="@+id/favicon"
30 android:layout_width="20dip"
31 android:layout_height="20dip"
Michael Kolbc7485ae2010-09-03 10:10:58 -070032 android:layout_marginLeft="16dip" />
Michael Kolbfe251992010-07-08 15:41:55 -070033 <ImageView
34 android:id="@+id/lock"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
Michael Kolbc7485ae2010-09-03 10:10:58 -070037 android:layout_marginLeft="16dip"
Michael Kolbfe251992010-07-08 15:41:55 -070038 android:visibility="gone" />
39 <TextView
40 android:id="@+id/title"
Michael Kolba2b2ba82010-08-04 17:54:03 -070041 android:layout_height="match_parent"
Michael Kolbfe251992010-07-08 15:41:55 -070042 android:layout_width="0dip"
43 android:layout_weight="1.0"
Michael Kolbc7485ae2010-09-03 10:10:58 -070044 android:layout_marginLeft="16dip"
Michael Kolba2b2ba82010-08-04 17:54:03 -070045 android:textAppearance="?android:attr/textAppearanceSmall"
Michael Kolbc7485ae2010-09-03 10:10:58 -070046 android:textColor="@color/white"
47 android:gravity="center_vertical"
48 android:scrollHorizontally="true"
49 android:fadingEdge="horizontal"
50 android:fadingEdgeLength="24dip"
51 android:lines="1"
52 android:singleLine="true" />
53 <ImageButton
Michael Kolbfe251992010-07-08 15:41:55 -070054 android:id="@+id/close"
Michael Kolbc7485ae2010-09-03 10:10:58 -070055 android:background="@drawable/browserbarbutton"
Michael Kolbfe251992010-07-08 15:41:55 -070056 android:layout_width="wrap_content"
57 android:layout_height="wrap_content"
Michael Kolbc7485ae2010-09-03 10:10:58 -070058 android:layout_marginLeft="16dip"
59 android:layout_marginRight="16dip"
60 android:src="@drawable/ic_tab_close" />
Michael Kolbed217742010-08-10 17:52:34 -070061</merge>