blob: 03355746ff31acb3b9a8f57335db4495c15041b6 [file] [log] [blame]
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080020 android:minHeight="?android:attr/listPreferredItemHeight"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070021 android:orientation="horizontal"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080022 android:paddingRight="6dip"
23 android:paddingLeft="6dip"
24 android:paddingTop="5dip"
25 android:paddingBottom="5dip"
26 android:gravity="center_vertical"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070027 >
28 <ImageView android:id="@+id/favicon"
29 android:layout_width="48dip"
30 android:layout_height="48dip"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080031 android:layout_marginLeft="5dip"
32 android:layout_marginRight="11dip"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070033 android:focusable="false"
34 android:src="@android:drawable/ic_menu_add"
35 android:scaleType="fitCenter"
36 />
37 <LinearLayout
38 android:layout_width="fill_parent"
39 android:layout_height="wrap_content"
40 android:orientation="vertical"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070041 >
42 <TextView android:id="@+id/title"
43 android:text="@string/add_new_bookmark"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080044 android:textAppearance="?android:attr/textAppearanceMedium"
45 android:textStyle="bold"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070046 android:layout_width="wrap_content"
47 android:layout_height="wrap_content"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080048 android:layout_marginBottom="2dip"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070049 />
50 <TextView android:id="@+id/url"
51 android:textAppearance="?android:attr/textAppearanceSmall"
52 android:maxLines="1"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070053 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
The Android Open Source Projectb7775e12009-02-10 15:44:04 -080055 android:singleLine="true"
56 android:ellipsize="end"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070057 />
58 </LinearLayout>
59</LinearLayout>