2010-07-21 23:15:28 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
2012-09-15 21:24:40 -04:00
|
|
|
android:background="?attr/backgroundColorChooseAccountHeader"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:gravity="left|center_vertical">
|
2012-03-23 22:00:53 -04:00
|
|
|
<View
|
|
|
|
android:id="@+id/chip"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_width="6dp"/>
|
2010-07-21 23:15:28 -04:00
|
|
|
|
2012-03-22 17:17:10 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="fill_parent"
|
2010-07-21 23:15:28 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2012-03-23 22:00:53 -04:00
|
|
|
android:paddingTop="8dp"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:paddingLeft="18dp"
|
|
|
|
android:paddingRight="4dp"
|
2012-03-23 22:00:53 -04:00
|
|
|
android:paddingBottom="8dp"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2012-03-23 22:00:53 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
2010-07-21 23:15:28 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|