23 lines
834 B
XML
23 lines
834 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="524dp"
|
||
|
android:layout_gravity="bottom"
|
||
|
android:background="@drawable/background_dialog_live_codex"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/close_btn"
|
||
|
android:layout_width="8dp"
|
||
|
android:layout_height="14dp"
|
||
|
android:layout_margin="13dp"
|
||
|
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"
|
||
|
android:paddingStart="12dp"
|
||
|
android:paddingEnd="12dp"
|
||
|
android:paddingBottom="15dp" />
|
||
|
</LinearLayout>
|