AntennaPod/res/layout/downloadlist_item.xml

46 lines
1.5 KiB
XML
Raw Normal View History

2012-05-31 12:21:58 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2012-07-05 12:43:57 +02:00
android:layout_height="match_parent"
android:orientation="vertical" >
2012-05-31 12:21:58 +02:00
<TextView
android:id="@+id/txtvTitle"
2012-07-05 12:43:57 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2012-08-15 16:46:42 +02:00
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
2012-07-05 12:43:57 +02:00
android:textStyle="bold" />
<TextView
android:id="@+id/txtvMessage"
android:layout_width="match_parent"
2012-05-31 12:21:58 +02:00
android:layout_height="wrap_content"
2012-08-15 16:46:42 +02:00
android:layout_margin="8dp" />
2012-07-05 12:43:57 +02:00
<ProgressBar
android:id="@+id/progProgress"
2012-08-15 16:46:42 +02:00
style="?android:attr/progressBarStyleHorizontal"
2012-05-31 12:21:58 +02:00
android:layout_width="match_parent"
2012-07-05 12:43:57 +02:00
android:layout_height="16dp"
2012-08-15 16:46:42 +02:00
android:layout_margin="8dp" />
2012-07-05 12:43:57 +02:00
2012-05-31 12:21:58 +02:00
<RelativeLayout
2012-07-05 12:43:57 +02:00
android:layout_width="match_parent"
2012-05-31 12:21:58 +02:00
android:layout_height="wrap_content"
2012-07-05 12:43:57 +02:00
android:layout_margin="8dp" >
2012-05-31 12:21:58 +02:00
<TextView
android:id="@+id/txtvDownloaded"
android:layout_width="wrap_content"
2012-07-05 12:43:57 +02:00
android:layout_height="wrap_content"
android:layout_alignParentLeft="true" />
2012-05-31 12:21:58 +02:00
<TextView
android:id="@+id/txtvPercent"
android:layout_width="wrap_content"
2012-07-05 12:43:57 +02:00
android:layout_height="wrap_content"
android:layout_alignParentRight="true" />
2012-05-31 12:21:58 +02:00
</RelativeLayout>
2012-07-05 12:43:57 +02:00
</LinearLayout>