为了账号安全,请及时绑定邮箱和手机立即绑定

RadioButton插入函数式

请问怎么在RadioButton弄一条函数式进去,当按下这个键时,得数是根据这条函数式得出来的

正在回答

1 回答

RadioButton是单选按钮,多个RadioButton放在一个RadioGroup控件中,也就是说每次只能有1个RadioButton被选中。

  //设置who_group的监听器,其实是一句代码,其参数是一个带有重构函数的对象
       who_group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {            
           public void onCheckedChanged(RadioGroup group, int checkedId) {                // TODO Auto-generated method stub
               if(checkedId == china.getId()){
                   Toast.makeText(MainActivity.this,"中国", Toast.LENGTH_SHORT).show();
               }                else if(checkedId == america.getId()){
                   Toast.makeText(MainActivity.this, "美国", Toast.LENGTH_SHORT).show();
               }                else if(checkedId == others.getId()){
                   Toast.makeText(MainActivity.this, "其它国家", Toast.LENGTH_SHORT).show();
               }
           }
       });      


0 回复 有任何疑惑可以回复我~
#1

qq_冰独来独往_0 提问者

非常感谢!
2017-12-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312585    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

RadioButton插入函数式

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信