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

36 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_r16_tb_ffffff"
android:paddingTop="@dimen/dp_16"
android:paddingBottom="@dimen/dp_20">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_marginStart="@dimen/dp_16"
android:text="魅力值详情"
android:textColor="#333333"
android:textSize="16sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_charm_list"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_300"
android:layout_marginBottom="20dp"
android:layout_marginStart="@dimen/dp_16"
android:layout_marginEnd="@dimen/dp_16"
android:layout_marginTop="@dimen/dp_30"
tools:listitem="@layout/item_charm_dialog" />
</RelativeLayout>
</layout>