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-08-31 00:19:59 +02:00
|
|
|
android:minHeight="24dp"
|
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"
|
2014-08-31 00:19:59 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
2014-08-01 23:30:31 +02:00
|
|
|
<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"
|
2014-08-31 00:19:59 +02:00
|
|
|
android:layout_marginTop="-4dip"
|
|
|
|
android:text=".com"/>
|
2014-08-01 23:30:31 +02:00
|
|
|
<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"
|
2014-08-31 00:19:59 +02:00
|
|
|
android:layout_marginTop="-4dip"
|
|
|
|
/>
|
2014-07-20 17:09:34 +02:00
|
|
|
</LinearLayout>
|