Emoticon_Stickers/app/src/main/res/layout/adapter_home.xml
2024-04-16 17:13:24 +08:00

33 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
android:background="@color/white"
android:id="@+id/item_card_view"
android:layout_marginTop="12dp"
app:cardCornerRadius="6dp">
<RelativeLayout
android:layout_width="match_parent"
android:padding="12dp"
android:layout_height="match_parent">
<TextView
android:id="@+id/name_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textColor="@color/color_1c1c1c"
android:textSize="18sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_below="@id/name_tv" />
</RelativeLayout>
</androidx.cardview.widget.CardView>