<?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>
|