首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

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

2012-08-29 
android为RadioButton单独添加checked监听事件final RadioButton red_radio (RadioButton) findViewById

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() {@Overridepublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {red_radio.setChecked(false);}});

热点排行