blob: 68c38d9cbc1252f3e15ac9f02f2746588bd056ed [file] [log] [blame]
Nicolas Roardc5702322009-09-14 20:39:08 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:drawingCacheQuality="auto"
Romain Guy15b8ec62010-01-08 15:06:43 -080019 android:layout_width="match_parent"
Nicolas Roardc5702322009-09-14 20:39:08 +010020 android:layout_height="?android:attr/listPreferredItemHeight"
Ben Murdochbe9560d2009-11-09 09:52:21 -080021 android:gravity="center_vertical"
Nicolas Roardc5702322009-09-14 20:39:08 +010022 android:padding="0dip">
23
24 <ImageView android:id="@+id/icon"
Ben Murdochbe9560d2009-11-09 09:52:21 -080025 android:layout_width="20dip"
26 android:layout_height="20dip"
Vivek Sekhared791da2015-02-22 12:39:05 -080027 android:layout_marginStart="18dip"
28 android:layout_marginEnd="18dip"
Ben Murdochbe9560d2009-11-09 09:52:21 -080029 android:layout_centerVertical="true"
John Reck548ac6f2011-06-09 16:24:00 -070030 android:background="@drawable/bookmark_list_favicon_bg"
Nicolas Roardc5702322009-09-14 20:39:08 +010031 android:padding="2dip" />
32
Ben Murdochbe9560d2009-11-09 09:52:21 -080033 <LinearLayout
Nicolas Roardc5702322009-09-14 20:39:08 +010034 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
Vivek Sekhared791da2015-02-22 12:39:05 -080036 android:layout_toEndOf="@id/icon"
37 android:layout_toStartOf="@id/features"
Ben Murdochbe9560d2009-11-09 09:52:21 -080038 android:layout_centerVertical="true"
Nicolas Roardc5702322009-09-14 20:39:08 +010039 android:layout_alignWithParentIfMissing="true"
Ben Murdochbe9560d2009-11-09 09:52:21 -080040 android:orientation="vertical">
Nicolas Roardc5702322009-09-14 20:39:08 +010041
Ben Murdochbe9560d2009-11-09 09:52:21 -080042 <TextView android:id="@+id/title"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:textAppearance="?android:attr/textAppearanceMedium"
46 android:maxLines="2"
47 android:ellipsize="end" />
Nicolas Roardc5702322009-09-14 20:39:08 +010048
Ben Murdochbe9560d2009-11-09 09:52:21 -080049 <TextView android:id="@+id/subtitle"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:textAppearance="?android:attr/textAppearanceSmall"
53 android:visibility="gone"
54 android:singleLine="true"
55 android:ellipsize="end" />
56 </LinearLayout>
Nicolas Roardc5702322009-09-14 20:39:08 +010057</RelativeLayout>