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