Files
yusheng-android/MainModule/src/main/res/layout/item_multi_select_t.xml
2025-11-07 09:22:39 +08:00

52 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/iv_photo1"
android:layout_width="@dimen/dp_70"
android:layout_height="@dimen/dp_70"
android:scaleType="centerCrop"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:riv_corner_radius="@dimen/dp_5"
tools:src="@mipmap/default_avatar"/>
<View
android:id="@+id/v_checkbox"
android:layout_width="@dimen/dp_20"
android:layout_height="@dimen/dp_20"
android:background="@drawable/selector_custom_checkbox"
android:focusable="false"
android:clickable="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"/> />
<TextView
android:id="@+id/tv_album_name1"
android:layout_width="wrap_content"
android:layout_height="@dimen/dp_22"
android:layout_marginTop="@dimen/dp_6"
app:layout_constraintTop_toBottomOf="@+id/iv_photo1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:gravity="left|center"
tools:text="我的相册"
android:textColor="#333333"
android:textSize="@dimen/sp_14" />
<TextView
android:id="@+id/tv_album_count1"
android:layout_width="wrap_content"
android:layout_height="@dimen/dp_18"
app:layout_constraintTop_toBottomOf="@+id/tv_album_name1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:gravity="left|center"
tools:text="共0张"
android:textColor="#999999"
android:textSize="@dimen/sp_12" />
</androidx.constraintlayout.widget.ConstraintLayout>