Android程序开发中单选按钮(RadioGroup)的使用详解
更新时间:2016年03月03日 11:21:49 投稿:mrr
在android程序开发中,无论是单选按钮还是多选按钮都非常的常见,接下来通过本文给大家介绍Android程序开发中单选按钮(RadioGroup)的使用,需要的朋友参考下吧
在还没给大家介绍单选按钮(RadioGroup)的使用,先给大家展示下效果图吧:
xml文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical"> <TextView android:id="@+id/txt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="您的性别为"/> <RadioGroup android:id="@+id/sex" android:layout_width="fill_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/male" android:text="男"/> <RadioButton android:id="@+id/female" android:text="女"/> </RadioGroup> </LinearLayout>
java文件
public class MainActivity extends Activity { private TextView txt=null; private RadioGroup sex=null; private RadioButton male=null; private RadioButton female=null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.txt=(TextView) super.findViewById(R.id.txt); this.sex=(RadioGroup) super.findViewById(R.id.sex); this.male=(RadioButton) super.findViewById(R.id.male); this.female=(RadioButton) super.findViewById(R.id.female); this.sex.setOnCheckedChangeListener(new OnCheckedChangeListenerImp()); } private class OnCheckedChangeListenerImp implements OnCheckedChangeListener{ public void onCheckedChanged(RadioGroup group, int checkedId) { String temp=null; if(MainActivity.this.male.getId()==checkedId){ temp="男"; } else if(MainActivity.this.female.getId()==checkedId){ temp="女"; } MainActivity.this.txt.setText("您的性别是"+temp); } }
以上所述是小编给大家介绍的Android程序开发中单选按钮(RadioGroup)的使用详解,希望对大家有所帮助!
相关文章
详解如何使用VisualStudio高效开发调试AndroidNDK
这篇文章主要介绍了详解如何使用VisualStudio高效开发调试AndroidNDK,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-12-12Android自定义ViewGroup之CustomGridLayout(一)
这篇文章主要为大家详细介绍了Android自定义ViewGroup之CustomGridLayout的相关资料,感兴趣的小伙伴们可以参考一下2016-09-09APP添加CNZZ统计插件教程 Android版添加phonegap
这篇文章主要介绍了APP添加CNZZ统计插件教程,Android版添加phonegap,感兴趣的小伙伴们可以参考一下2015-12-12Android Jetpack组件Navigation导航组件的基本使用
本篇主要简单介绍了一下 Navigation 是什么 以及使用它的流程是什么,并且结合实际案例 操作了一番,Navigation 还有很多其他用法,如条件导航、嵌套图、过度动画 等等功能 有机会再操作,需要的朋友可以参考下2022-06-06AndroidStduio3.0 使用gradle将module打包jar文件的方法
这篇文章主要介绍了AndroidStduio3.0 使用gradle将module打包jar文件的方法,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下2019-04-04
最新评论