3 개의 파일이 있습니다. 첫 번째 MainActivity.java, 두 번째는 activity_main.xml, 세 번째는 radio_button.xml입니다.id를 확인하십시오. inflate view 후 데이터베이스를 기반으로하는 라디오 버튼
이것은 radio_button.xml입니다. 이 파일에 radioGroup 및 radioButton을 만듭니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RadioGroup
android:id="@+id/radioGroupNotes"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioChildNotes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="No respond to phone call"
android:checked="false" />
</RadioGroup>
</LinearLayout>
이것은 activity_main입니다. 이 XML에서 LinearLayout을 만듭니다. 왜냐하면 나는이 LinearLayout에서 radio_button.xml을 부 풀리기를 원하기 때문이다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layoutRadioNotes"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>
이것은 MainActivity.java입니다. 나는 main 함수를이 파일에만 넣는다.
void showRadioNote(){
layoutRadioNotes.removeAllViews();
if(noteArray.size() != 0){
for(int i=0;i<noteArray.size();i++){
final View view = View.inflate(this, R.layout.radio_button, null);
layoutRadioNotes.addView(view);
final RadioGroup radioGroupNotes = (RadioGroup) view.findViewById(R.id.radioGroupNotes);
final RadioButton radioChildNotes = (RadioButton) view.findViewById(R.id.radioChildNotes);
radioChildNotes.setText(noteArray.get(i));
}
}
}
나는 모든 데이터를 이미 noteArray에 표시 할 수 있습니다. 하지만 문제는 내가 모든 radioButton을 클릭하면 모두 점검됩니다. 하나만 선택할 수 있도록하려면 첫 번째 radioButton을 클릭 한 다음 firstButton을 선택하고 firstbutton 값을 가져온 다음 두 번째 radioButton을 클릭하면 선택되지 않은 firstbutton이 표시되고 두 번째 버튼이 선택되어 secondbutton에 대한 값을 가져옵니다. 다음 코드를 사용해보십시오
RadioGroup은 activity_main.xml에 있어야하고 라디오 버튼 하나를 팽창시켜 하나를 라디오 그룹에 추가해야합니다. – Alan
여전히 동일합니다. 하나 이상을 선택하면 –
내 답변을 확인하십시오. 자세한 내용을 확인하십시오. 그리고 코멘트를 남길 자유롭게 느낀다. – Alan