首页 > 移动平台 > 详细

安卓单选组件使用

时间:2015-11-02 22:55:57      阅读:203      评论:0      收藏:0      [点我收藏+]

xml:


<RadioGroup android:id="@+id/group1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            >
    <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="radio1"/>
    <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="radio2"/>
    <RadioButton
            android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
            android:text="radio3"/>
</RadioGroup>
<TextView android:text="你的选择是:"
          android:id="@+id/txtResult"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"/>

java中的代码:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TextView textView=(TextView)findViewById(R.id.txtResult);
        RadioGroup radioGroup=(RadioGroup)findViewById(R.id.group1);
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, int i) {
                int radioButtonId=radioGroup.getCheckedRadioButtonId();
                RadioButton rb=(RadioButton)helloworld.this.findViewById(radioButtonId);

                textView.setText(rb.getText());
            }
        });
    }

最终效果:

技术分享

 

 

安卓单选组件使用

原文:http://www.cnblogs.com/carsickcars/p/4931627.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!