2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-10-30 17:06:09 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2010-10-30 17:06:09 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="50dip"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical">
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView android:id="@+id/text1"
|
2010-06-13 11:25:46 -04:00
|
|
|
android:textColor="@android:color/primary_text_light"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:paddingLeft="6dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
|
|
|
<TextView android:id="@+id/text2"
|
2010-06-13 11:25:46 -04:00
|
|
|
android:textColor="@android:color/secondary_text_light"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-10-30 17:06:09 -04:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:paddingLeft="12dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
2010-10-30 17:06:09 -04:00
|
|
|
</LinearLayout>
|