码迷,mamicode.com
首页 > 其他好文 > 详细

RadioGroup开关

时间:2016-01-23 07:52:06      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

   RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radioGroup);
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                Toast.makeText(MainActivity.this,
                        checkedId == R.id.radioButton_boy?"生男孩":"生女孩",
                        Toast.LENGTH_SHORT).show();
            }
        });
  <RadioGroup
        android:orientation="horizontal"
        android:id="@+id/radioGroup"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <RadioButton
            android:text="男孩"
            android:id="@+id/radioButton_boy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <RadioButton
            android:text="女孩"
            android:id="@+id/radioButton_girl"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </RadioGroup>

技术分享

RadioGroup开关

标签:

原文地址:http://www.cnblogs.com/sansansan/p/5152752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!