私はアンドロイドデバイスにクイズアプリを作成しています。各質問にはラジオ・グループとラジオ・ボタンによる少なくとも4つの回答オプションがあります。ラジオグループ内のラジオボタンを選択すると、異なるラジオグループのラジオボタンが選択されます
クイズのアクティビティであるクイズのページでは、私はリストビューを使用しました。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_question_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="ir.testravanshenasi.segalclinic.test.QuestionListActivity"
tools:showIn="@layout/activity_question_list">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true">
<TextView
android:text="test questions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView13"
android:layout_marginBottom="10dp"
android:textAlignment="center"
android:textSize="18sp" />
<View
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="@android:color/darker_gray"
android:layout_alignParentTop="true" />
<ListView
android:layout_width="match_parent"
android:id="@+id/activity_question_list_list"
android:layout_height="430dp">
</ListView>
<View
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="@android:color/darker_gray"
android:layout_alignParentTop="true" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="5dp"
android:paddingRight="5dp">
<Button
android:text="cancel"
android:layout_width="wrap_content"
android:id="@+id/activity_question_list_cancel"
android:layout_weight="1"
android:textSize="18sp"
android:layout_height="40dp"
android:onClick="onCancelBtnClick" />
<Button
android:text="end"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:id="@+id/activity_question_list_complete"
android:layout_weight="1"
android:textSize="18sp"
android:background="@android:color/holo_green_dark"
android:onClick="onCompleteBtnClick" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
と私は各質問行のレイアウトを作成しました。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_id"
android:visibility="gone" />
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_text" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_options">
<RadioButton
android:text="RadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/question_option_1"
android:layout_weight="1" />
<RadioButton
android:text="RadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/question_option_2"
android:layout_weight="1" />
<RadioButton
android:text="RadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/question_option_3"
android:layout_weight="1" />
<RadioButton
android:text="RadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/question_option_4"
android:layout_weight="1" />
<RadioButton
android:text="RadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_option_5"
android:layout_weight="1"
android:visibility="gone" />
</RadioGroup>
</LinearLayout>
と私はリストビューにSimpleAdapterとして質問を追加します。
String[] from = {"qid" , "question" , "op1","op2" , "op3" , "op4"};
int[] to = { R.id.question_id , R.id.question_text , R.id.question_option_1 ,R.id.question_option_2 , R.id.question_option_3 , R.id.question_option_4 };
questionsList = parse(jsonArray);
SimpleAdapter rlt = new SimpleAdapter(
getBaseContext() , questionsList , R.layout.question ,from , to);
lv.setAdapter(rlt);
問題は、質問で最初の回答オプションを選択したときなど、他の質問でも最初のオプションが選択されているという問題があります。
私はGenymotionで自分のアプリをテストします。
ありがとうございました。
はあなたが彼らに何を表示するまで、誰もあなたを助けることができないでしょう –
をimplementigているコードを表示やった。 –