27 lines
975 B
XML
27 lines
975 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/bg_live_sud_list_select"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingStart="1dp"
|
||
|
android:paddingTop="5dp"
|
||
|
android:paddingEnd="1dp"
|
||
|
android:paddingBottom="5dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/top_select"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/bg_live_sud_list_select_item"
|
||
|
android:clickable="true"
|
||
|
android:gravity="center"
|
||
|
android:padding="3dp"
|
||
|
android:textColor="#FFFFFF"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/sud_title_select"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
</LinearLayout>
|