2015-11-04 18:54:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-07-02 14:12:52 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:paddingStart="@dimen/material_layout_keylines_screen_edge_margin"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:paddingTop="@dimen/material_component_lists_padding_above_list"
|
|
|
|
android:paddingEnd="@dimen/material_layout_keylines_screen_edge_margin">
|
2016-07-02 14:12:52 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_progress_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_alignParentEnd="true"
|
2016-07-02 14:12:52 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
2020-02-22 00:43:50 +01:00
|
|
|
tools:text="(0/10)" />
|
2015-11-04 18:54:07 +01:00
|
|
|
|
2016-07-02 14:12:52 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
2015-11-04 18:54:07 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_alignParentStart="true"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_toStartOf="@id/download_progress_text"
|
2016-07-02 14:12:52 +02:00
|
|
|
android:ellipsize="end"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:maxLines="1"
|
2016-07-02 14:12:52 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Body1"
|
2020-02-22 00:43:50 +01:00
|
|
|
tools:text="Manga title" />
|
2016-07-02 14:12:52 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/manga_title"
|
|
|
|
android:ellipsize="end"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Caption"
|
|
|
|
tools:text="Chapter Title" />
|
2015-11-04 18:54:07 +01:00
|
|
|
|
2015-11-05 00:50:39 +01:00
|
|
|
<ProgressBar
|
2016-05-12 14:28:44 +02:00
|
|
|
android:id="@+id/download_progress"
|
2020-02-22 00:43:50 +01:00
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
2015-11-05 00:50:39 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-07-02 14:12:52 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_below="@id/chapter_title" />
|
2015-11-04 18:54:07 +01:00
|
|
|
|
2020-01-10 01:10:55 +01:00
|
|
|
</RelativeLayout>
|