我有两个无线电组 - RadioGroupSelect,questionRG。 在RadioGroupSelect中是radioButton1,radioButton2。 问题RG是radiobutton questionRB1。 如果我将选择radioButton1并设置其他文本,如果我将选择radioButton2,如何设置questionRB1中的任何文本?
答案 0 :(得分:0)
使用以下代码
if(radioButton1.isChecked()){
questionRB1.setText("your text");
}
对其他单选按钮也一样。