blob: 332dc364c6541b97563b13cdf11ccfc18ba60851 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?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
Vivek Sekhared791da2015-02-22 12:39:05 -08007
The Android Open Source Project0c908882009-03-03 19:32:16 -08008 http://www.apache.org/licenses/LICENSE-2.0
Vivek Sekhared791da2015-02-22 12:39:05 -08009
The Android Open Source Project0c908882009-03-03 19:32:16 -080010 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
Enrico Rosd6efa972014-12-02 19:49:59 -080017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:minHeight="?android:attr/listPreferredItemHeight"
21 android:orientation="horizontal">
22
Pankaj Garg21dad562015-07-02 17:17:24 -070023 <com.android.browser.SiteTileView
Enrico Rosd6efa972014-12-02 19:49:59 -080024 android:id="@+id/favicon"
Pankaj Garg21dad562015-07-02 17:17:24 -070025 android:layout_width="36dip"
26 android:layout_height="36dip"
27 android:layout_gravity="center"
28 android:layout_marginStart="12dip" />
Enrico Rosd6efa972014-12-02 19:49:59 -080029
30 <LinearLayout
31 android:layout_width="0dip"
32 android:layout_height="wrap_content"
33 android:layout_gravity="center_vertical"
34 android:layout_weight="1"
35 android:orientation="vertical"
Vivek Sekhared791da2015-02-22 12:39:05 -080036 android:paddingStart="8dip"
37 android:paddingEnd="8dip">
Enrico Rosd6efa972014-12-02 19:49:59 -080038
39 <TextView
40 android:id="@+id/title"
The Android Open Source Project0c908882009-03-03 19:32:16 -080041 android:layout_width="wrap_content"
John Reck0ce8a942011-01-14 19:57:09 -080042 android:layout_height="wrap_content"
Enrico Rosd6efa972014-12-02 19:49:59 -080043 android:ellipsize="end"
44 android:maxLines="1"
45 android:singleLine="true"
46 android:textAppearance="?android:attr/textAppearanceMedium" />
47
48 <TextView
49 android:id="@+id/url"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:ellipsize="middle"
53 android:maxLines="1"
54 android:singleLine="true"
55 android:textAppearance="?android:attr/textAppearanceSmall" />
56 </LinearLayout>
57
58 <CheckBox
59 android:id="@+id/star"
60 android:layout_width="wrap_content"
61 android:layout_height="wrap_content"
62 android:layout_gravity="center"
63 android:button="@drawable/ic_action_bookmark"
64 android:focusable="false"
65 android:paddingBottom="16dip"
Vivek Sekhared791da2015-02-22 12:39:05 -080066 android:paddingStart="8dip"
67 android:paddingEnd="8dip"
Enrico Rosd6efa972014-12-02 19:49:59 -080068 android:paddingTop="16dip" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080069</LinearLayout>