温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android学习笔记:常用控件 RadioGroup和CheckBox

发布时间:2020-04-16 22:07:53 来源:网络 阅读:1223 作者:imjam 栏目:移动开发

RadioGroup和CheckBox是android的常用控件,本文自做简单介绍和学习笔记,所以所用的控件样式选用android默认的样式。

先看下代码实现的效果图

Android学习笔记:常用控件 RadioGroup和CheckBox

图中,上面两个(male和female)为一个RadioGroup中的两个RadioButton,下面三个为CheckBox。

一个RadioGroup里面的内容只可单选,CheckBox可多选。

接下来是代码部分

布局文件代码activity_main.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"
    android:orientation="vertical"
    tools:context="com.jam.radiogroupandcheckbox.MainActivity" >

    <RadioGroup
        android:id="@+id/id_radiogroup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <RadioButton
            android:id="@+id/id_radiobutton_male"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="male" />

        <RadioButton
            android:id="@+id/id_radiobutton_female"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="female" />
    </RadioGroup>

    <CheckBox
        android:id="@+id/id_checkbox_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="one" />

    <CheckBox
        android:id="@+id/id_checkbox_two"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="two" />

    <CheckBox
        android:id="@+id/id_checkbox_three"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="three" />

</LinearLayout>

采用的是线性布局,代码比较简单,就是一个RadioGroup包含了两个RadioButton(想要多少RadioButton就加多少个),还有三个CheckBox。

接下来是MainActivity.java :

package com.jam.radiogroupandcheckbox;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;

public class MainActivity extends Activity {

	//声明控件
	private RadioGroup radioGroup;
	private CheckBox checkBox_one;
	private CheckBox checkBox_two;
	private CheckBox checkBox_three;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		radioGroup = (RadioGroup) findViewById(R.id.id_radiogroup);
		checkBox_one = (CheckBox) findViewById(R.id.id_checkbox_one);
		checkBox_two = (CheckBox) findViewById(R.id.id_checkbox_two);
		checkBox_three = (CheckBox) findViewById(R.id.id_checkbox_three);
		
		/**
		 * radioGroup绑定一个匿名内部类android.widget.RadioGroup.OnCheckedChangeListener
		 */
		radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {
				switch (checkedId) {
				case R.id.id_radiobutton_male:
					Log.i("radioGroup", "male");
					break;
				case R.id.id_radiobutton_female:
					Log.i("radioGroup", "female");
					break;

				}
			}
		});
		//给三个CheckBox绑定监听器
		checkBox_one.setOnCheckedChangeListener(new myOnCheckedChangeListener());
		checkBox_two.setOnCheckedChangeListener(new myOnCheckedChangeListener());
		checkBox_three.setOnCheckedChangeListener(new myOnCheckedChangeListener());
	}

	/**
	 * 注意CheckBox绑定的Listener是android.widget.CompoundButton.OnCheckedChangeListener
	 * @author jam
	 *
	 */
	private class myOnCheckedChangeListener implements android.widget.CompoundButton.OnCheckedChangeListener {

		@Override
		public void onCheckedChanged(CompoundButton buttonView,
				boolean isChecked) {
			switch (buttonView.getId()) {
			case R.id.id_checkbox_one:
				Log.i("checkbox", "one");
				break;
			case R.id.id_checkbox_two:
				Log.i("checkbox", "two");
				break;
			case R.id.id_checkbox_three:
				Log.i("checkbox", "three");
				break;
			}
		}
		
	}

}

以上便是RadioGroup和CheckBox的简单使用方式,RadioGroup和CheckBox获取选择的内容和其他用途网上已有许多资源,在此就不再介绍。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI