您好,登錄后才能下訂單哦!
應用場景:實現單選效果 eg:問卷調查 性別選中
xml:
RadioButton
android:checked="true" 設置是否 選中
android:text="RadioButton" 文本
注意:
RaidoButton要實現單選效果必須放在RadioGroup中
RadioGroup設置方向:
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();
//設置RadioButton狀態改變監聽事件
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);
}
});
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。