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

19 lines
862 B
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="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/riv_user_head"
android:layout_width="@dimen/dp_16"
android:layout_height="@dimen/dp_13"
android:layout_centerHorizontal="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:riv_corner_radius="@dimen/dp_6"
android:scaleType="fitXY"/>
</androidx.constraintlayout.widget.ConstraintLayout>