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 | --> |
| 13 | <LinearLayout |
| 14 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 15 | android:layout_width="0dip" |
| 16 | android:layout_weight="1.0" |
| 17 | android:layout_height="wrap_content" |
| 18 | android:gravity="center_vertical" |
| 19 | android:orientation="horizontal"> |
| 20 | <ImageView |
| 21 | android:id="@+id/favicon" |
| 22 | android:layout_width="20dip" |
| 23 | android:layout_height="20dip" |
| 24 | android:layout_marginLeft="3dip" /> |
| 25 | <ImageView |
| 26 | android:id="@+id/lock" |
| 27 | android:layout_width="wrap_content" |
| 28 | android:layout_height="wrap_content" |
| 29 | android:layout_marginLeft="6dip" |
| 30 | android:visibility="gone" /> |
| 31 | <TextView |
| 32 | android:id="@+id/title" |
| 33 | android:layout_height="wrap_content" |
| 34 | android:layout_width="0dip" |
| 35 | android:layout_weight="1.0" |
| 36 | android:layout_marginLeft="3dip" |
| 37 | android:textAppearance="?android:attr/textAppearanceMedium" |
| 38 | android:textColor="@color/black" |
| 39 | android:gravity="center_vertical" |
| 40 | android:singleLine="true" |
| 41 | android:ellipsize="end" /> |
| 42 | <com.android.browser.CircularProgressView |
| 43 | android:id="@+id/stop" |
| 44 | android:layout_width="36dip" |
| 45 | android:layout_height="36dip" |
| 46 | android:background="@null" |
| 47 | android:src="@drawable/progress_stop" /> |
| 48 | <ImageView |
| 49 | android:id="@+id/close" |
| 50 | android:layout_width="wrap_content" |
| 51 | android:layout_height="wrap_content" |
| 52 | android:layout_marginLeft="6dip" |
| 53 | android:src="@drawable/btn_close_window" /> |
| 54 | </LinearLayout> |