さまざまなイベントに参加しているメンバーのリストを使用してアプリケーションを開発しています。
ゲームのグループに参加する人々のグループ。ただし、参加できるのは 1 人 1 試合のみです。だから私はを選択しましたRadioButton
。A、B、C、D の 4 つのゲームです。People のリストには 4 つのリストがRadioButton
あり、各人に対してその中から 1 つを選択する必要があります。
GridView
次のようにカスタマイズされた行データを試しました...
<GridView
android:id="@+id/gridViewMarkList"
android:layout_width="match_parent"
android:layout_height="326dp"
android:numColumns="1" >
</GridView>
My Grid List は、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>
アクティビティのデータを取得できませんでした..
このプロセスを実行するための提案があれば教えてください..!