parent
4d768beea6
commit
b84db00367
@ -1,104 +1,110 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="60dp" |
android:layout_height="wrap_content"> |
||||||
android:background="?attr/selectableItemBackground" |
|
||||||
android:orientation="horizontal" |
|
||||||
android:baselineAligned="false"> |
|
||||||
|
|
||||||
<FrameLayout |
<io.legado.app.ui.widget.image.CoverImageView |
||||||
android:layout_width="60dp" |
android:id="@+id/iv_cover" |
||||||
android:layout_height="match_parent"> |
android:layout_width="80dp" |
||||||
<!--选择是否添加文件--> |
android:layout_height="110dp" |
||||||
<io.legado.app.lib.theme.view.ThemeCheckBox |
android:layout_margin="8dp" |
||||||
android:id="@+id/cb_select" |
android:contentDescription="@string/img_cover" |
||||||
android:layout_width="wrap_content" |
android:scaleType="centerCrop" |
||||||
android:layout_height="wrap_content" |
android:src="@drawable/image_cover_default" |
||||||
android:layout_gravity="center" |
android:transitionName="img_cover" |
||||||
android:clickable="false" |
app:layout_constraintBottom_toBottomOf="parent" |
||||||
android:enabled="true" |
app:layout_constraintLeft_toLeftOf="parent" |
||||||
android:focusable="true" /> |
app:layout_constraintTop_toTopOf="parent" |
||||||
<!--文件夹标识或已选文件标识--> |
tools:ignore="UnusedAttribute" /> |
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_icon" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent" |
|
||||||
android:scaleType="center" |
|
||||||
android:visibility="invisible" |
|
||||||
android:src="@drawable/ic_folder" |
|
||||||
app:tint="@color/primaryText" /> |
|
||||||
</FrameLayout> |
|
||||||
|
|
||||||
<LinearLayout |
|
||||||
|
<TextView |
||||||
|
android:id="@+id/tv_name" |
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="match_parent" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" |
android:layout_margin="8dp" |
||||||
android:paddingTop="5dp" |
android:text="@string/app_name" |
||||||
android:paddingBottom="5dp" |
android:textColor="@color/primaryText" |
||||||
android:orientation="vertical"> |
android:textSize="16sp" |
||||||
|
app:layout_constraintStart_toEndOf="@+id/iv_cover" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_info" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="0dp" |
||||||
|
android:orientation="horizontal" |
||||||
|
android:gravity="top" |
||||||
|
android:layout_marginTop="8dp" |
||||||
|
app:layout_constraintLeft_toLeftOf="@+id/tv_name" |
||||||
|
app:layout_constraintTop_toBottomOf="@+id/tv_name"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_name" |
android:id="@+id/tv_size" |
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="0dp" |
|
||||||
android:layout_weight="1" |
|
||||||
android:singleLine="true" |
|
||||||
android:text="@string/app_name" |
|
||||||
android:textSize="16sp" |
|
||||||
android:gravity="center_vertical" |
|
||||||
tools:ignore="NestedWeights" /> |
|
||||||
<LinearLayout |
|
||||||
android:id="@+id/ll_brief" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="0dp" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" |
android:ellipsize="end" |
||||||
android:gravity="center_vertical" |
android:lines="1" |
||||||
android:orientation="horizontal"> |
tools:text="128kb" |
||||||
|
android:textColor="@color/tv_text_summary" |
||||||
|
android:textSize="13sp" /> |
||||||
|
<TextView |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:ellipsize="end" |
||||||
|
android:lines="1" |
||||||
|
tools:text="\u4e28" |
||||||
|
android:textColor="@color/tv_text_summary" |
||||||
|
android:textSize="11sp" /> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentBgTextView |
<TextView |
||||||
android:id="@+id/tv_tag" |
android:id="@+id/tv_date" |
||||||
android:layout_width="wrap_content" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_marginRight="15dp" |
android:ellipsize="end" |
||||||
android:paddingStart="5dp" |
android:lines="1" |
||||||
android:paddingEnd="5dp" |
tools:text="2022-12-7" |
||||||
android:text="TXT" |
android:textColor="@color/tv_text_summary" |
||||||
android:maxLines="1" |
android:textSize="13sp" /> |
||||||
android:maxWidth="50dp" |
|
||||||
app:radius="2dp" |
|
||||||
tools:ignore="HardcodedText,RtlHardcoded" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_size" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:layout_marginRight="15dp" |
|
||||||
tools:ignore="RtlHardcoded" |
|
||||||
tools:text="324kb" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_date" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
tools:text="2017-05-22" /> |
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
<io.legado.app.ui.widget.text.AccentBgTextView |
||||||
|
android:id="@+id/tv_content_type" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_marginRight="15dp" |
||||||
|
android:layout_marginTop="8dp" |
||||||
|
android:paddingStart="5dp" |
||||||
|
android:paddingEnd="5dp" |
||||||
|
android:text="TXT" |
||||||
|
android:maxLines="1" |
||||||
|
android:maxWidth="50dp" |
||||||
|
app:radius="2dp" |
||||||
|
tools:ignore="HardcodedText,RtlHardcoded" |
||||||
|
app:layout_constraintLeft_toLeftOf="@+id/tv_name" |
||||||
|
app:layout_constraintTop_toBottomOf="@id/ll_info" |
||||||
|
/> |
||||||
<LinearLayout |
<LinearLayout |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="match_parent" |
android:layout_height="match_parent" |
||||||
android:paddingTop="5dp" |
|
||||||
android:paddingBottom="5dp" |
|
||||||
android:orientation="vertical" |
android:orientation="vertical" |
||||||
android:gravity="center_vertical" |
app:layout_constraintRight_toRightOf="parent" |
||||||
|
app:layout_constraintBottom_toBottomOf="parent" |
||||||
|
app:layout_constraintTop_toTopOf="parent" |
||||||
|
android:layout_marginTop="3dp" |
||||||
|
android:id="@+id/tv_download" |
||||||
> |
> |
||||||
<Button |
<Button |
||||||
|
android:id="@+id/tv_download1" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:text="下载" |
android:text="下载" |
||||||
> |
> |
||||||
|
|
||||||
</Button> |
</Button> |
||||||
</LinearLayout> |
</LinearLayout> |
||||||
</LinearLayout> |
</androidx.constraintlayout.widget.ConstraintLayout> |
Loading…
Reference in new issue