AntennaPod/res/layout/downloadlog_item.xml

53 lines
1.8 KiB
XML
Raw Normal View History

2012-06-17 18:20:34 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
2012-08-04 16:05:36 +02:00
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="4dp" >
2012-06-17 18:20:34 +02:00
<TextView
2012-08-04 16:05:36 +02:00
android:id="@+id/txtvType"
2012-06-17 18:20:34 +02:00
android:layout_width="wrap_content"
2012-08-04 16:05:36 +02:00
android:layout_height="wrap_content"
2012-09-20 19:47:26 +02:00
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:textColor="@color/gray" />
2012-06-17 18:20:34 +02:00
<TextView
2012-08-04 16:05:36 +02:00
android:id="@+id/txtvTitle"
2012-09-20 19:47:26 +02:00
android:layout_width="0dp"
2012-06-17 18:20:34 +02:00
android:layout_height="wrap_content"
2012-08-04 16:05:36 +02:00
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
2012-09-20 19:47:26 +02:00
android:layout_toLeftOf="@id/txtvType"
android:ellipsize="end"
android:maxLines="2" />
2012-06-17 18:20:34 +02:00
</RelativeLayout>
<TextView
android:id="@+id/txtvDate"
android:layout_width="wrap_content"
2012-08-04 16:05:36 +02:00
android:layout_height="wrap_content"
android:layout_marginLeft="8dp" />
2012-06-17 18:20:34 +02:00
<TextView
android:id="@+id/txtvStatus"
android:layout_width="wrap_content"
2012-08-04 16:05:36 +02:00
android:layout_height="wrap_content"
android:layout_margin="8dp" />
2012-06-17 18:20:34 +02:00
<TextView
android:id="@+id/txtvReason"
android:layout_width="wrap_content"
2012-08-04 16:05:36 +02:00
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp" />
2012-06-17 18:20:34 +02:00
</LinearLayout>