* Added scanlator for Batoto on chapter list * adjusted item_chapter layout for scanlator adjusted so db chapters get updated if scanlator does not match source scanlator * adjusted item_chapter layout for scanlator adjusted chapter holder to dynamically set title max lines depending on if scanlator exists * fixed excess blank line * changed scanlator to be instantiated instead lateint to prevent toast message erro when viewing chapters by catalog * changed item_chapter.xml to constraint layout * removed accidental changes to catalog * cleaned up code. * fixed issue where long title was running into 3 dot menu fixed issue where no scanlator for manga was causing date to not be bottom lined fixed general chapter layout to be more similar to existing * allow scanlator to be null * fixed merge issue * fixed merge issue * attempt to fix whitespace carriage return issue * attempt to fix whitespace carriage return issue * attempt to fix whitespace carriage return issue
102 lines
3.9 KiB
XML
102 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:background="?attr/selectable_list_drawable">
|
|
|
|
<TextView
|
|
android:id="@+id/chapter_title"
|
|
style="@style/TextAppearance.Regular.Body1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
tools:text="Title"
|
|
app:layout_constraintLeft_toLeftOf="@+id/guideline3"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:layout_marginTop="12dp"
|
|
app:layout_constraintRight_toLeftOf="@+id/chapter_menu"/>
|
|
|
|
<TextView
|
|
android:id="@+id/chapter_scanlator"
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Scanlator"
|
|
android:maxLines="1"
|
|
app:layout_constraintLeft_toLeftOf="@+id/guideline3"
|
|
app:layout_constraintTop_toBottomOf="@+id/chapter_title"
|
|
app:layout_constraintBottom_toTopOf="@+id/chapter_date"
|
|
app:layout_constraintRight_toLeftOf="@+id/chapter_menu"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/chapter_date"
|
|
style="@style/TextAppearance.Regular.Caption"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="22/02/2016"
|
|
android:ellipsize="marquee"
|
|
android:maxLines="1"
|
|
app:layout_constraintLeft_toLeftOf="@+id/guideline3"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/chapter_pages"
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Pages: 45"
|
|
android:ellipsize="marquee"
|
|
android:maxLines="1"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/chapter_menu"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:srcCompat="@drawable/ic_more_horiz_black_24dp"
|
|
app:layout_constraintRight_toLeftOf="@+id/guideline4"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="0dp"
|
|
android:paddingBottom="12dp"
|
|
android:paddingTop="12dp"
|
|
android:contentDescription="@string/description_cover"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/download_text"
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="DOWNLOADED"
|
|
android:textAllCaps="true"
|
|
app:layout_constraintRight_toLeftOf="@+id/guideline4"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
/>
|
|
|
|
<android.support.constraint.Guideline
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/guideline3"
|
|
android:orientation="vertical"
|
|
app:layout_constraintGuide_begin="16dp"
|
|
/>
|
|
|
|
<android.support.constraint.Guideline
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/guideline4"
|
|
android:orientation="vertical"
|
|
app:layout_constraintGuide_end="16dp"
|
|
/>
|
|
|
|
</android.support.constraint.ConstraintLayout>
|