我一次只想選擇一個單選按鈕,但選中其中一個單選按鈕後,如果我點擊其中一個按鈕,他們都被選中,我該如何解決這個問題。 只選擇一個單選按鈕
我MainActivity.java代碼
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onClick(View view) {
TextView text=(TextView)findViewById(R.id.txt1);
text.setText("Wrong Answer");
}
public void onClick1(View view) {
TextView text=(TextView)findViewById(R.id.txt1);
text.setText("You are Right");
}
}
一個字'Radiogroup' –
只需使用RadioGroup中,往其中加單選按鈕 –