2017-03-07 8 views
0

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에 대한 값을 가져옵니다. 다음 코드를 사용해보십시오

This is my problem, when click other radiobutton it not unchecked others button

+0

RadioGroup은 activity_main.xml에 있어야하고 라디오 버튼 하나를 팽창시켜 하나를 라디오 그룹에 추가해야합니다. – Alan

+0

여전히 동일합니다. 하나 이상을 선택하면 –

+0

내 답변을 확인하십시오. 자세한 내용을 확인하십시오. 그리고 코멘트를 남길 자유롭게 느낀다. – Alan

답변

1

,

public class MainActivity extends AppCompatActivity { 

LinearLayout layoutRadioNotes; 
ArrayList<String> noteArray = new ArrayList<>(); 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    layoutRadioNotes = (LinearLayout) findViewById(R.id.layoutRadioNotes) ; 
    noteArray.add("test 1"); 
    noteArray.add("test 1"); 
    showRadioNote(); 
} 

void showRadioNote(){ 
    layoutRadioNotes.removeAllViews(); 
    if(noteArray.size() != 0){ 
     final View view = View.inflate(this, R.layout.radio_button, null); 
     layoutRadioNotes.addView(view); 

     final RadioGroup radioGroupNotes = (RadioGroup) view.findViewById(R.id.radioGroupNotes); 
     radioGroupNotes.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() 
     { 
      @Override 
      public void onCheckedChanged(RadioGroup group, int checkedId) { 
       // checkedId is the RadioButton selected 
      } 
     }); 
     for(int i=0;i<noteArray.size();i++){ 
      final RadioButton radioChildNotes = new RadioButton(this); 
      radioChildNotes.setText(noteArray.get(i)); 
      radioGroupNotes.addView(radioChildNotes); 

     } 
    } 
} 

}

activity_main.xml

<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/layoutRadioNotes" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.example.moduletest.MainActivity"> 


</LinearLayout> 

당신 버튼 레이아웃,

<?xml version="1.0" encoding="utf-8"?> 

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/radioGroupNotes" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" /> 
+0

아직도 할 수 없다. 나의 데이터는 하나의 radioButton만을 보여준다. –

+0

예 ... 그것은 효과가 있었다. 그러나 나는 그것을 칠 때 값 텍스트 radioButton을 어떻게 얻을 수 있는가? –

+0

은 청취자를 추가하는 답변을 편집했습니다 :) – sadat