2013-11-22 81 views

回答

0

我不知道,如果你可以一個TextView添加到RadioGroup,但你可以嘗試:

RadioGroup rg = new RadioGroup(getContext()); 

RadioButton rb1 = new RadioButton(getContext()); 
RadioButton rb2 = new RadioButton(getContext()); 
TextView tv = new TextView(getContext()); 

rg.addView(rb1); 
rg.addView(rb2); 
rg.addView(tv); 
+0

如果我不想在單個廣播組中添加一個文本視圖和兩個單選按鈕,該怎麼辦? – Kunu

+0

好的,thanx爲您的寶貴意見 – Kunu

相關問題