endian11
2021-01-19 b2fe9c4f073523284c671bf8895a8412cd269518
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="260dp"
 
    android:layout_height="360dp"
    android:gravity="center"
 
    android:background="@drawable/bg_select_dlg"
    android:orientation="vertical" >
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="@dimen/network_train_textsize20px"
    android:textColor="@android:color/white"
    android:padding="@dimen/ui_margin_10dp"
    android:background="@drawable/bg_select_dlg"
    android:text="请选择一个项目:"/>
        <LinearLayout
 
            android:layout_width="match_parent"
            android:id="@+id/radiogroub"
            android:layout_marginRight="@dimen/ui_margin_10dp"
            android:layout_height="300dp">
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recy"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>
 
 
        </LinearLayout>
 
</LinearLayout>