pandorapan/common/src/main/res/layout/dialog_live_codex.xml

26 lines
904 B
XML
Raw Normal View History

2023-08-02 16:55:36 +08:00
<?xml version="1.0" encoding="utf-8"?>
2023-08-14 17:40:52 +08:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2023-08-02 16:55:36 +08:00
android:layout_width="match_parent"
android:layout_height="524dp"
android:layout_gravity="bottom"
android:background="@drawable/background_dialog_live_codex"
android:orientation="vertical">
<ImageView
2023-08-14 17:40:52 +08:00
2023-08-02 16:55:36 +08:00
android:id="@+id/close_btn"
2023-08-14 17:40:52 +08:00
android:layout_width="18dp"
android:layout_height="24dp"
2023-08-02 16:55:36 +08:00
android:layout_margin="13dp"
2023-08-14 17:40:52 +08:00
android:padding="5dp"
2023-08-02 16:55:36 +08:00
android:src="@mipmap/icon_regular_black" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/live_codex"
android:layout_width="match_parent"
android:layout_height="match_parent"
2023-08-14 17:40:52 +08:00
android:layout_marginTop="40dp"
2023-08-02 16:55:36 +08:00
android:paddingStart="12dp"
android:paddingEnd="12dp"
android:paddingBottom="15dp" />
2023-08-14 17:40:52 +08:00
</FrameLayout>