2016-01-18 12:04:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:background="@drawable/selector_chapter_light">
|
|
|
|
|
2016-02-18 11:23:17 -05:00
|
|
|
|
2016-01-18 12:04:07 -05:00
|
|
|
<RelativeLayout
|
|
|
|
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">
|
|
|
|
|
2016-02-18 11:23:17 -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">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:textColor="@color/accent_text"
|
|
|
|
android:textSize="12sp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2016-01-18 12:04:07 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
2016-02-18 11:23:17 -05:00
|
|
|
android:layout_marginRight="30dp"
|
|
|
|
android:layout_marginEnd="30dp"
|
2016-01-18 12:04:07 -05:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2016-02-18 11:23:17 -05:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
2016-01-18 12:04:07 -05:00
|
|
|
tools:text="My manga"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2016-02-18 11:23:17 -05:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
2016-01-18 12:04:07 -05:00
|
|
|
tools:text="Title"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2016-02-18 11:23:17 -05:00
|
|
|
|
2016-01-18 12:04:07 -05:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2016-02-18 11:23:17 -05:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/chapter_menu"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:gravity="center|end"
|
|
|
|
android:paddingBottom="18dp"
|
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingRight="?android:attr/listPreferredItemPaddingRight">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_alignParentEnd="false"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:src="@drawable/ic_more_horiz_black_24dp"
|
|
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
2016-01-18 12:04:07 -05:00
|
|
|
</RelativeLayout>
|