AntennaPod/res/layout/downloadlist_item.xml

44 lines
1.4 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"
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-07-05 12:43:57 +02:00
android:layout_margin="4dp" />
<ProgressBar
android:id="@+id/progProgress"
style="@android:style/Widget.ProgressBar.Horizontal"
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"
android:layout_margin="4dp" />
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>