You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.3 KiB
87 lines
3.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.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="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<io.legado.app.ui.widget.image.CoverImageView
|
|
android:id="@+id/iv_cover"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@string/img_cover"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/image_cover_default"
|
|
android:transitionName="img_cover"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fl_has_new"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintRight_toRightOf="@id/iv_cover"
|
|
app:layout_constraintTop_toTopOf="@id/iv_cover">
|
|
|
|
<io.legado.app.ui.widget.BadgeView
|
|
android:id="@+id/bv_unread"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:layout_margin="5dp"
|
|
android:includeFontPadding="false"
|
|
tools:ignore="RtlHardcoded" />
|
|
|
|
<io.legado.app.ui.widget.anima.RotateLoading
|
|
android:id="@+id/rl_loading"
|
|
android:layout_width="26dp"
|
|
android:layout_height="26dp"
|
|
android:layout_gravity="right"
|
|
android:visibility="invisible"
|
|
app:loading_color="@color/colorAccent"
|
|
app:loading_width="2dp"
|
|
tools:ignore="RtlHardcoded" />
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fl_author"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintLeft_toLeftOf="@id/iv_cover"
|
|
app:layout_constraintBottom_toBottomOf="@id/iv_cover">
|
|
|
|
<io.legado.app.ui.widget.BadgeView
|
|
android:id="@+id/bv_author"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
app:bv_radius="0dp"
|
|
tools:ignore="RtlHardcoded" />
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:gravity="center"
|
|
android:lines="2"
|
|
android:ellipsize="end"
|
|
android:text="@string/book_name"
|
|
android:textColor="@color/tv_text_default"
|
|
android:textSize="12sp"
|
|
app:layout_constraintLeft_toLeftOf="@+id/iv_cover"
|
|
app:layout_constraintRight_toRightOf="@+id/iv_cover"
|
|
app:layout_constraintTop_toBottomOf="@+id/iv_cover"
|
|
tools:ignore="RtlHardcoded,RtlSymmetry" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |