2015-11-04 12:54:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-04 12:54:07 -05:00
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginRight="15dp">
|
|
|
|
|
2015-11-04 18:50:39 -05:00
|
|
|
<LinearLayout
|
2015-11-04 12:54:07 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
2015-11-04 18:50:39 -05:00
|
|
|
android:orientation="horizontal">
|
2015-11-04 12:54:07 -05:00
|
|
|
|
2015-11-04 18:50:39 -05:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-11-04 12:54:07 -05:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-04 18:50:39 -05:00
|
|
|
android:id="@+id/download_title"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2015-11-04 12:54:07 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/download_progress_text"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:layout_gravity="start" />
|
2015-11-04 18:50:39 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
2015-11-04 12:54:07 -05:00
|
|
|
|
2015-11-04 18:50:39 -05:00
|
|
|
<ProgressBar
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/download_progress" />
|
2015-11-04 12:54:07 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|