我正在开发一个应用程序,其中包含参与不同活动的成员列表。
一群人参加一组游戏。但是一个人只能参加一场比赛。所以我选择了RadioButton
. 四个游戏,即 A、B、C 和 D。人物列表中列出了四个RadioButton
,我们需要为每个人从中选择一个。
我已尝试GridView
使用自定义行数据如下...
<GridView
android:id="@+id/gridViewMarkList"
android:layout_width="match_parent"
android:layout_height="326dp"
android:numColumns="1" >
</GridView>
我的网格列表是一个单列,row.xml 中有以下数据
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="500dp"
android:layout_height="fill_parent"
android:padding="10dp" >
<TableRow>
<TextView
android:id="@+id/SNo"
style="@style/text"
android:layout_width="100dp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/Name"
style="@style/text"
android:layout_width="180dp"
android:layout_height="wrap_content" />
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="160dp"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/A"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:checked="true" />
<RadioButton
android:id="@+id/B"
android:layout_width="40dp"
android:layout_height="wrap_content" />
<RadioButton
android:id="@+id/C"
android:layout_width="40dp"
android:layout_height="wrap_content" />
<RadioButton
android:id="@+id/D"
android:layout_width="40dp"
android:layout_height="wrap_content" />
</RadioGroup>
</TableRow>
现在我无法检索活动中的数据..
给我做这个过程的任何建议..!