您好,登錄后才能下訂單哦!
應(yīng)用場景:實現(xiàn)單選效果 eg:問卷調(diào)查 性別選中
xml:
RadioButton
android:checked="true" 設(shè)置是否 選中
android:text="RadioButton" 文本
注意:
RaidoButton要實現(xiàn)單選效果必須放在RadioGroup中
RadioGroup設(shè)置方向:
android:orientation="horizontal" 水平
code:
//獲得RadioGroup
RadioGroup mGroup=(RadioGroup) findViewById(R.id.radioGroup1);
//獲得被選中的RadioButtonId
int checkedRadioButtonId = mGroup.getCheckedRadioButtonId();
//查找選中的RadioButton
RadioButton button = (RadioButton) findViewById(checkedRadioButtonId);
//獲得選中的RadioButton的文本
String string = button.getText().toString();
//設(shè)置RadioButton狀態(tài)改變監(jiān)聽事件
mGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
//獲得被選中的RadioButton
RadioButton button = (RadioButton) findViewById(checkedId);
//獲得選中的RadioButton的文本
String string = button.getText().toString();
mTv.setText(string);
}
});
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。