18 lines
647 B
XML
18 lines
647 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="360dp"
|
|
android:background="@color/white"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/switch_dialog_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@null"
|
|
android:cacheColorHint="#00000000"
|
|
android:divider="#ccc"
|
|
android:dividerHeight="1px"
|
|
android:listSelector="#00000000" />
|
|
|
|
</LinearLayout> |