Prank_Party/app/src/main/res/layout/fragment_sound.xml
2024-08-28 17:18:04 +08:00

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".FirstFragment.SoundFragment">
<ImageView
android:id="@+id/fragment_sound_setting"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_alignParentStart="true"
android:layout_marginStart="20dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:src="@drawable/setting" />
<ImageView
android:id="@+id/fragment_sound_title"
android:layout_width="wrap_content"
android:layout_height="32dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:src="@drawable/sound_title" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/sound_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/fragment_sound_title" />
</RelativeLayout>