Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 1 | <?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 Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 13 | <merge |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 14 | xmlns:android="http://schemas.android.com/apk/res/android" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 15 | android:layout_width="wrap_content" |
Michael Kolb | a2b2ba8 | 2010-08-04 17:54:03 -0700 | [diff] [blame] | 16 | android:layout_height="match_parent" |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 17 | android:gravity="center_vertical" |
Michael Kolb | a2b2ba8 | 2010-08-04 17:54:03 -0700 | [diff] [blame] | 18 | android:orientation="horizontal" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 19 | android:background="@drawable/tab_background"> |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 20 | <ImageView |
Michael Kolb | ae62fd4 | 2010-08-18 16:33:28 -0700 | [diff] [blame] | 21 | android:id="@+id/incognito" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 22 | android:layout_width="16dip" |
| 23 | android:layout_height="16dip" |
Michael Kolb | ae62fd4 | 2010-08-18 16:33:28 -0700 | [diff] [blame] | 24 | android:layout_marginLeft="3dip" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 25 | android:gravity="center_vertical" |
| 26 | android:src="@drawable/fav_incognito" |
Michael Kolb | ae62fd4 | 2010-08-18 16:33:28 -0700 | [diff] [blame] | 27 | android:visibility="gone" /> |
| 28 | <ImageView |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 29 | android:id="@+id/favicon" |
| 30 | android:layout_width="20dip" |
| 31 | android:layout_height="20dip" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 32 | android:layout_marginLeft="16dip" /> |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 33 | <ImageView |
| 34 | android:id="@+id/lock" |
| 35 | android:layout_width="wrap_content" |
| 36 | android:layout_height="wrap_content" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 37 | android:layout_marginLeft="16dip" |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 38 | android:visibility="gone" /> |
| 39 | <TextView |
| 40 | android:id="@+id/title" |
Michael Kolb | a2b2ba8 | 2010-08-04 17:54:03 -0700 | [diff] [blame] | 41 | android:layout_height="match_parent" |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 42 | android:layout_width="0dip" |
| 43 | android:layout_weight="1.0" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 44 | android:layout_marginLeft="16dip" |
Michael Kolb | a2b2ba8 | 2010-08-04 17:54:03 -0700 | [diff] [blame] | 45 | android:textAppearance="?android:attr/textAppearanceSmall" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 46 | 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 Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 54 | android:id="@+id/close" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 55 | android:background="@drawable/browserbarbutton" |
Michael Kolb | fe25199 | 2010-07-08 15:41:55 -0700 | [diff] [blame] | 56 | android:layout_width="wrap_content" |
| 57 | android:layout_height="wrap_content" |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame^] | 58 | android:layout_marginLeft="16dip" |
| 59 | android:layout_marginRight="16dip" |
| 60 | android:src="@drawable/ic_tab_close" /> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 61 | </merge> |