parent
4d768beea6
commit
b84db00367
@ -1,104 +1,110 @@ |
||||
<?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:tools="http://schemas.android.com/tools" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="60dp" |
||||
android:background="?attr/selectableItemBackground" |
||||
android:orientation="horizontal" |
||||
android:baselineAligned="false"> |
||||
android:layout_height="wrap_content"> |
||||
|
||||
<FrameLayout |
||||
android:layout_width="60dp" |
||||
android:layout_height="match_parent"> |
||||
<!--选择是否添加文件--> |
||||
<io.legado.app.lib.theme.view.ThemeCheckBox |
||||
android:id="@+id/cb_select" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_gravity="center" |
||||
android:clickable="false" |
||||
android:enabled="true" |
||||
android:focusable="true" /> |
||||
<!--文件夹标识或已选文件标识--> |
||||
<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> |
||||
<io.legado.app.ui.widget.image.CoverImageView |
||||
android:id="@+id/iv_cover" |
||||
android:layout_width="80dp" |
||||
android:layout_height="110dp" |
||||
android:layout_margin="8dp" |
||||
android:contentDescription="@string/img_cover" |
||||
android:scaleType="centerCrop" |
||||
android:src="@drawable/image_cover_default" |
||||
android:transitionName="img_cover" |
||||
app:layout_constraintBottom_toBottomOf="parent" |
||||
app:layout_constraintLeft_toLeftOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
tools:ignore="UnusedAttribute" /> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="0dp" |
||||
android:layout_height="match_parent" |
||||
android:layout_weight="1" |
||||
android:paddingTop="5dp" |
||||
android:paddingBottom="5dp" |
||||
android:orientation="vertical"> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_name" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="0dp" |
||||
android:layout_weight="1" |
||||
android:singleLine="true" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:layout_margin="8dp" |
||||
android:text="@string/app_name" |
||||
android:textColor="@color/primaryText" |
||||
android:textSize="16sp" |
||||
android:gravity="center_vertical" |
||||
tools:ignore="NestedWeights" /> |
||||
app:layout_constraintStart_toEndOf="@+id/iv_cover" |
||||
app:layout_constraintTop_toTopOf="parent" /> |
||||
|
||||
<LinearLayout |
||||
android:id="@+id/ll_brief" |
||||
android:layout_width="match_parent" |
||||
android:id="@+id/ll_info" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="0dp" |
||||
android:layout_weight="1" |
||||
android:gravity="center_vertical" |
||||
android:orientation="horizontal"> |
||||
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 |
||||
android:id="@+id/tv_size" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:ellipsize="end" |
||||
android:lines="1" |
||||
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" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_date" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:ellipsize="end" |
||||
android:lines="1" |
||||
tools:text="2022-12-7" |
||||
android:textColor="@color/tv_text_summary" |
||||
android:textSize="13sp" /> |
||||
|
||||
|
||||
|
||||
</LinearLayout> |
||||
<io.legado.app.ui.widget.text.AccentBgTextView |
||||
android:id="@+id/tv_tag" |
||||
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" /> |
||||
|
||||
<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> |
||||
tools:ignore="HardcodedText,RtlHardcoded" |
||||
app:layout_constraintLeft_toLeftOf="@+id/tv_name" |
||||
app:layout_constraintTop_toBottomOf="@id/ll_info" |
||||
/> |
||||
<LinearLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="match_parent" |
||||
android:paddingTop="5dp" |
||||
android:paddingBottom="5dp" |
||||
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 |
||||
android:id="@+id/tv_download1" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:text="下载" |
||||
> |
||||
|
||||
</Button> |
||||
</LinearLayout> |
||||
</LinearLayout> |
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
Loading…
Reference in new issue