Android 带有 ListView 的 RadioButton 组

Android RadioButton Group With ListView

VidMate Preview

在这里 vidmate 在列表视图中使用单选组。 我如何构建这样的布局。这里的音频和视频都在同一个广播组中。 怎么做?

这是一个简单的例子,说明如何将 RadioButtons 设置为 TextViews:

<LinearLayout
        android:background="#EEEEEE"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/main_layut"
        android:gravity="center">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center">

            <RadioButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="360p"
                android:id="@+id/radioButton"
                android:layout_gravity="center"
                android:layout_margin="10dp"
                android:checked="false"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="mp4"
                android:layout_margin="10dp"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="20 MB"
                android:layout_margin="10dp"/>

        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/main_layut"
            android:gravity="center">

            <RadioButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="360p"
                android:id="@+id/radioButto"
                android:layout_gravity="center"
                android:layout_margin="10dp"
                android:checked="false"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="mp4"
                android:layout_margin="10dp"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="20 MB"
                android:layout_margin="10dp"/>

        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/main_layut"
            android:gravity="center">

            <RadioButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="360p"
                android:id="@+id/radioButton"
                android:layout_gravity="center"
                android:layout_margin="10dp"
                android:checked="false"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="mp4"
                android:layout_margin="10dp"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="20 MB"
                android:layout_margin="10dp"/>

        </LinearLayout>

    </LinearLayout>