优化
Some checks failed
Test Build / prepare (push) Has been cancelled
Test Build / build (app, release) (push) Has been cancelled
Test Build / build (app, releaseA) (push) Has been cancelled
Test Build / prerelease (push) Has been cancelled
Test Build / lanzou (push) Has been cancelled
Test Build / test_Branch (push) Has been cancelled
Test Build / telegram (push) Has been cancelled
closeStaleIssue / stale (push) Has been cancelled

This commit is contained in:
Horis
2025-04-10 18:22:44 +08:00
parent f80c4965be
commit a9d6b91010

View File

@@ -2,37 +2,40 @@
<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:padding="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:background="@drawable/bg_item_focused_on_tv"
android:foreground="?android:attr/selectableItemBackground">
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground"
android:padding="16dp"
android:scrollbars="none">
<io.legado.app.ui.widget.image.FilletImageView
android:id="@+id/iv_icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:scaleType="centerCrop"
app:radius="12dp"
app:layout_constraintTop_toTopOf="parent"
android:scrollbars="none"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:radius="12dp" />
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:textSize="13sp"
android:ellipsize="end"
android:gravity="top|center_horizontal"
android:lines="2"
android:ellipsize="end"
android:scrollbars="none"
android:textColor="@color/secondaryText"
tools:text="RSS"
android:textSize="13sp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/iv_icon" />
app:layout_constraintTop_toBottomOf="@+id/iv_icon"
tools:text="RSS" />
</androidx.constraintlayout.widget.ConstraintLayout>