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"
|
2016-05-12 08:28:44 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:orientation="vertical">
|
2015-11-04 12:54:07 -05:00
|
|
|
|
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
|
|
|
|
2016-05-12 08:28:44 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2015-11-04 18:50:39 -05:00
|
|
|
<TextView
|
2016-05-12 08:28:44 -04:00
|
|
|
android:id="@+id/manga_title"
|
2015-11-04 18:50:39 -05:00
|
|
|
android:layout_width="wrap_content"
|
2015-11-04 12:54:07 -05:00
|
|
|
android:layout_height="wrap_content"
|
2016-05-12 08:28:44 -04:00
|
|
|
android:text="Manga Title"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Body1"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Chapter Title"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Caption"/>
|
|
|
|
</LinearLayout>
|
2015-11-04 18:50:39 -05:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2015-11-04 12:54:07 -05:00
|
|
|
|
|
|
|
<TextView
|
2016-05-12 08:28:44 -04:00
|
|
|
android:id="@+id/download_progress_text"
|
2015-11-04 12:54:07 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-05-12 08:28:44 -04:00
|
|
|
android:layout_gravity="start"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
android:text="(0/10)"/>
|
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
|
2016-05-12 08:28:44 -04:00
|
|
|
android:id="@+id/download_progress"
|
2015-11-04 18:50:39 -05:00
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="match_parent"
|
2016-05-12 08:28:44 -04:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-11-04 12:54:07 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|