2014-04-28 15:41:40 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout 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"
|
2014-07-16 17:12:01 -04: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/faviconTab"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
2014-08-08 17:57:24 -04:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2014-07-16 17:12:01 -04:00
|
|
|
android:contentDescription="Favicon"
|
2014-08-08 17:57:24 -04:00
|
|
|
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/textTab"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
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:layout_toLeftOf="@+id/deleteButton"
|
|
|
|
android:layout_toRightOf="@+id/faviconTab"
|
2014-08-08 17:57:24 -04:00
|
|
|
android:ellipsize="end"
|
2014-07-16 17:12:01 -04:00
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeightSmall"
|
2014-08-08 17:57:24 -04: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
|
|
|
|
|
|
|
<ImageView
|
2015-01-26 13:09:27 -05:00
|
|
|
android:id="@+id/deleteButton"
|
2015-04-02 21:50:59 -04:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:layout_alignParentRight="true"
|
2014-07-16 17:12:01 -04:00
|
|
|
android:layout_centerVertical="true"
|
2015-04-02 21:50:59 -04:00
|
|
|
android:layout_marginRight="4dp"
|
2015-02-05 12:09:39 -05:00
|
|
|
android:background="?attr/actionBarItemBackground"
|
2014-04-28 15:41:40 -04:00
|
|
|
android:contentDescription="Delete Tab"
|
|
|
|
android:gravity="center_vertical"
|
2015-04-02 21:50:59 -04:00
|
|
|
android:padding="12dp"
|
2015-03-31 11:20:41 -04:00
|
|
|
android:src="?attr/deleteDrawable" >
|
2014-04-28 15:41:40 -04:00
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
</RelativeLayout>
|