2015-09-26 08:25:18 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-11-24 12:45:53 -05:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-19 10:39:19 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-11-30 14:52:12 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:background="?attr/selectable_list_drawable">
|
2015-11-24 12:45:53 -05:00
|
|
|
<RelativeLayout
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
|
|
|
|
android:paddingRight="?android:attr/listPreferredItemPaddingRight"
|
|
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart">
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2015-12-02 02:08:04 -05:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/relativeLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="18dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true">
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2015-12-02 02:08:04 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_pages"
|
2016-03-19 10:39:19 -04:00
|
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="Pages: 45"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_date"
|
2016-03-19 10:39:19 -04:00
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="22/02/2016"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_text"
|
2016-03-19 10:39:19 -04:00
|
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2016-03-19 10:39:19 -04:00
|
|
|
android:textAllCaps="true"/>
|
2015-12-02 02:08:04 -05:00
|
|
|
</RelativeLayout>
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2015-11-30 12:45:45 -05:00
|
|
|
<TextView
|
2015-12-02 02:08:04 -05:00
|
|
|
android:id="@+id/chapter_title"
|
2016-03-19 10:39:19 -04:00
|
|
|
style="@style/TextAppearance.Regular.Body1"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_above="@+id/relativeLayout"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:layout_alignParentRight="true"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
|
|
|
android:layout_marginRight="30dp"
|
2016-01-24 06:15:43 -05:00
|
|
|
android:ellipsize="middle"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:gravity="center_vertical"
|
2016-03-19 10:39:19 -04:00
|
|
|
android:maxLines="2"
|
2015-12-02 02:08:04 -05:00
|
|
|
tools:text="Title"/>
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2015-12-02 02:08:04 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|
2015-11-24 12:45:53 -05:00
|
|
|
|
2015-11-30 12:45:45 -05:00
|
|
|
<RelativeLayout
|
2015-11-30 14:52:12 -05:00
|
|
|
android:id="@+id/chapter_menu"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:layout_alignParentTop="true"
|
2015-11-30 14:52:12 -05:00
|
|
|
android:gravity="center|end"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:paddingBottom="18dp"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingRight="?android:attr/listPreferredItemPaddingRight">
|
|
|
|
|
2016-03-12 08:22:40 -05:00
|
|
|
<android.support.v7.widget.AppCompatImageView
|
2015-11-30 14:52:12 -05:00
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_alignParentEnd="false"
|
2015-11-30 14:52:12 -05:00
|
|
|
android:layout_alignParentRight="true"
|
2015-12-02 02:08:04 -05:00
|
|
|
android:layout_alignParentTop="true"
|
2016-03-19 10:39:19 -04:00
|
|
|
android:tint="?android:attr/textColorPrimary"
|
|
|
|
app:srcCompat="@drawable/ic_more_horiz_black_24dp"/>
|
2016-03-09 12:47:03 -05:00
|
|
|
|
2015-11-30 12:45:45 -05:00
|
|
|
</RelativeLayout>
|
2015-11-24 12:45:53 -05:00
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|