2014-07-20 17:09:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2014-08-01 23:30:31 +02:00
|
|
|
android:padding="4dp"
|
2014-07-20 17:09:34 +02:00
|
|
|
android:layout_height="wrap_content">
|
2014-08-01 23:30:31 +02:00
|
|
|
<TextView android:id="@android:id/title"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"/>
|
|
|
|
<TextView android:id="@android:id/text1"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_marginTop="-4dip"/>
|
|
|
|
<TextView android:id="@android:id/text2"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_marginTop="-4dip"/>
|
2014-07-20 17:09:34 +02:00
|
|
|
</LinearLayout>
|