2014-04-28 15:41:40 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2014-07-14 23:03:37 -04:00
|
|
|
android:layout_height="56dp"
|
2015-04-02 21:50:59 -04:00
|
|
|
android:background="?attr/selectedBackground"
|
2015-01-26 13:09:27 -05:00
|
|
|
android:gravity="center_vertical"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<ImageView
|
2015-01-26 13:09:27 -05:00
|
|
|
android:id="@+id/faviconBookmark"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2014-08-08 17:57:24 -04:00
|
|
|
android:layout_marginLeft="16dp"
|
2015-01-26 13:09:27 -05:00
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:contentDescription="Favicon"
|
|
|
|
android:gravity="center_vertical" >
|
2014-04-28 15:41:40 -04:00
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
<TextView
|
2015-01-26 13:09:27 -05:00
|
|
|
android:id="@+id/textBookmark"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-04-02 21:50:59 -04:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2015-01-26 13:09:27 -05:00
|
|
|
android:ellipsize="end"
|
2014-07-16 17:12:01 -04:00
|
|
|
android:fontFamily="sans-serif-light"
|
2015-01-26 13:09:27 -05:00
|
|
|
android:gravity="center_vertical"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:maxLines="1"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeightSmall"
|
2015-01-26 13:09:27 -05:00
|
|
|
android:singleLine="true"
|
2015-03-31 11:20:41 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSmall" />
|
2014-04-28 15:41:40 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|