2012-07-23 00:28:01 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2012-07-29 15:43:28 +02:00
|
|
|
android:layout_height="wrap_content"
|
2013-09-28 12:25:52 +02:00
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingTop="12dp">
|
2012-07-23 00:28:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvStart"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2012-07-23 01:30:57 +02:00
|
|
|
android:layout_margin="8dp"
|
2013-09-28 12:25:52 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/text_size_small"/>
|
2012-07-23 00:28:01 +02:00
|
|
|
|
2012-07-23 01:30:57 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvTitle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2012-07-29 15:43:28 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2013-09-28 12:25:52 +02:00
|
|
|
android:padding="8dp"
|
2012-07-23 01:30:57 +02:00
|
|
|
android:layout_toLeftOf="@id/txtvStart"
|
2013-09-28 12:25:52 +02:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="@dimen/text_size_small"/>
|
2012-07-23 01:30:57 +02:00
|
|
|
|
2012-07-29 15:43:28 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvLink"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@id/txtvTitle"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_toLeftOf="@id/txtvStart"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
2013-09-28 12:25:52 +02:00
|
|
|
android:visibility="gone"
|
2012-07-29 15:43:28 +02:00
|
|
|
android:maxLines="2" />
|
|
|
|
|
2012-07-23 00:28:01 +02:00
|
|
|
</RelativeLayout>
|