本文实例讲述了AndroID RadioGroup的简单使用与监听。分享给大家供大家参考,具体如下:
activity_main.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="horizontal" > <RadioGroup androID:ID="@+ID/radioGroup1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:orIEntation="horizontal" > <Radiobutton androID:ID="@+ID/radio0" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:checked="true" androID:text="男" /> <Radiobutton androID:ID="@+ID/radio1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="女" /> </RadioGroup></linearLayout>
MainActivity.java
package com.example.hello;import androID.support.v7.app.ActionBaractivity;import androID.Widget.RadioGroup;import androID.Widget.Toast;import androID.Widget.RadioGroup.OnCheckedchangelistener;import androID.os.Bundle;public class MainActivity extends ActionBaractivity implements OnCheckedchangelistener{ private RadioGroup rg; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); rg = (RadioGroup) findVIEwByID(R.ID.radioGroup1); rg.setonCheckedchangelistener(this); } @OverrIDe public voID onCheckedChanged(RadioGroup group,int checkedID) { switch(checkedID){ case R.ID.radio0: Toast.makeText(MainActivity.this,"男",1).show(); break; case R.ID.radio1: Toast.makeText(MainActivity.this,"女",1).show(); break; } }}
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android开发之RadioGroup的简单使用与监听示例全部内容,希望文章能够帮你解决Android开发之RadioGroup的简单使用与监听示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)