必威体育Betway必威体育官网
当前位置:首页 > IT技术

Android控件系列之RadioButton与RadioGroup的基本使用

时间:2019-06-27 23:43:13来源:IT技术作者:seo实验室小编阅读:79次「手机版」
 

radiobutton

RadioButton即单选框,是一种基础的UI控件。RadioGroup为我们提供了RadioButton单选按钮的容器,RadioButton通常放于RadioGroup容器中进行使用。RadioButton的选中状态,在xml文件中可以使用android:checked=""来进行设置,选中就设置为true,没选中就设置为false。

这里先贴上XML的代码:

<RelativeLayout 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" >

<LinearLayout
android:id="@+id/ll_sex"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:orientation="horizontal" >

<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="性别:"
android:textSize="15sp" />

<RadioGroup
android:id="@+id/sex"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >

<RadioButton
android:id="@+id/nan"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="true"
android:gravity="center"
android:text="男" />

<RadioButton
android:id="@+id/nv"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="false"
android:text="女" />
</RadioGroup>
</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_below="@+id/ll_sex"
android:orientation="horizontal" >

<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="爱好:"
android:textSize="15sp" />

<RadioGroup
android:id="@+id/hobby"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >

<RadioButton
android:id="@+id/basketball"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="true"
android:gravity="center"
android:text="篮球" />

<RadioButton
android:id="@+id/table_tenis"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="false"
android:text="乒乓球" />

<RadioButton
android:id="@+id/badminton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="false"
android:text="羽毛球" />
</RadioGroup>
</LinearLayout>

</RelativeLayout>

这边我介绍两种获取RadioButton的监听事件处理方法:

方法一:通过获取点击的id来实例化并获取选中状态的RadioButton控件

// 实例化控件
		sex = (RadioGroup) findViewById(R.id.sex);

		// 方法一监听事件,通过获取点击的id来实例化并获取选中状态的RadioButton控件
		sex.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {
				// 获取选中的RadioButton的id
				int id = group.getCheckedRadioButtonId();
				// 通过id实例化选中的这个RadioButton
				RadioButton choise = (RadioButton) findViewById(id);
				// 获取这个RadioButton的text内容
				String output = choise.getText().toString();
				Toast.makeText(MainActivity.this, "你的性别为:" + output, Toast.LENGTH_SHORT).show();
			}
		});

效果图:

方法二:通过if的方法来对获取的id与实例化的xml中的RadioButton的ID进行判断,找出选中状态的RadioButton控件

hobby = (RadioGroup) findViewById(R.id.hobby);
		baskeball = (RadioButton) findViewById(R.id.basketball);
		table_tennis = (RadioButton) findViewById(R.id.table_tenis);
		badminton = (RadioButton) findViewById(R.id.badminton);
		// 方法二,通过if的方法来对获取的id与实例化的xml中的RadioButton的ID进行判断,找出选中状态的RadioButton控件
		hobby.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {

				if (baskeball.getId() == checkedId) {
					shuchu = baskeball.getText().toString();
				}
				if (table_tennis.getId() == checkedId) {
					shuchu = table_tennis.getText().toString();
				}
				if (badminton.getId() == checkedId) {
					shuchu = badminton.getText().toString();
				}
				Toast.makeText(MainActivity.this, "你喜欢的体育运动为:" + shuchu, Toast.LENGTH_SHORT).show();

			}
		});
效果图:

点击下载

有话要说:这是博主第一次写博客,有些的不好的地方希望可以见谅,如果感觉还可以的,希望多多支持!!

相关阅读

C# SplitContainer 控件详细用法

原文链接:http://blog.sina.com.cn/s/blog_5d6893390100gnt9.html1、简介可以将 Windows 窗体 SplitContainer 控件看作是一个

Android HandlerThread使用介绍以及源码解析

1. 前言 首先,看一下官方对HandlerThread的解释: Handy class for starting a new thread that has a looper. The looper can th

Total Commander 使用方法

软件的下载地址: http://www.ghisler.com/download.htm http://www.gy84.com/download.php?id=2715 资源管理器 Total Commande

AndPermission最新版本,超级简单使用。

介绍 关于6.0运行时权限认证,使用官网介绍的方式比较繁琐,这里介绍一个开源库AndPermission,它采用链式调用方式,一句话申请所需权限

GPU利用率(使用率)计算公式

分享到:

栏目导航

推荐阅读

热门阅读