当前位置: 代码迷 >> Android >> android替RadioButton单独添加checked监听事件
  详细解决方案

android替RadioButton单独添加checked监听事件

热度:63   发布时间:2016-05-01 17:27:40.0
android为RadioButton单独添加checked监听事件
final RadioButton red_radio = (RadioButton) findViewById(R.id.red_radio);		final RadioButton gray_radio = (RadioButton) findViewById(R.id.gray_radio);		gray_radio.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {			@Override			public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {				red_radio.setChecked(false);			}		});
  相关解决方案