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

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

先看下代码实现的效果图

图中,上面两个(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获取选择的内容和其他用途网上已有许多资源,在此就不再介绍。

时间: 2024-11-20 07:46:33

Android学习笔记:常用控件 RadioGroup和CheckBox的相关文章

Android学习笔记-常用控件

单选按钮 Radio         <RadioGroup              android:id="@+id/genderGroup"             android:layout_width="wrap_content"             android:layout_height="wrap_content"             android:orientation="vertical"

十三、Android学习笔记_Andorid控件样式汇总

<!-- 设置activity为透明 --> <style name="translucent"> <item name="android:windowBackground">@color/translucent</item> <item name="android:windowIsTranslucent">true</item> <item name="an

Android学习笔记_75_Andorid控件样式汇总

<!-- 设置activity为透明 --> <style name="translucent"> <item name="android:windowBackground">@color/translucent</item> <item name="android:windowIsTranslucent">true</item> <item name="an

Android学习笔记--RecyclerView控件的使用

首先我们要依赖 compile 'com.android.support:recyclerview-v7:25.0.0'之后才可以使用 recyclerview XMl文件 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:t

android学习笔记七——控件(DatePicker、TimePicker、ProgressBar)

DatePicker.TimePicker ==> DatePicker,用于选择日期 TimePicker,用于选择时间 两者均派生与FrameLayout,两者在FrameLayout的基础上提供了一些方法来获取用户所选日期.时间: 程序中如果需要获取用户选择的日期.时间,可通过添加DataPicker添加OnDataChangeListener进行监听,为TimePicker添加OnTimeChangeListener进行监听. 实例——略 进度条==> ProgressBar.标题进度

android学习笔记八——控件

SeekBar——拖动条 拖动条(SeekBar)组件与ProgressBar水平形式的显示进度条类似,不过其最大的区别在于,拖动条可以由用户自己进行手工的调节,例如当用户需要调整播放器音量或者电影的播放速度都会使用到拖动条SeekBar类. android:thumb,指定一个Drawable对象,该对象将作为自定义滑块:为了实现程序拖动滑块位置的改变,程序可以绑定一个OnSeekBarChangeListener监听器. android:thumb,用于改变拖动条上滑块的外观. 布局文件==

Android学习笔记之控件Spinner

1.mian.xml布局文件 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_p

Android学习笔记之控件DatePicker和TimePicker

1.xml布局文件 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent

Android学习笔记之控件GridView

1.xml布局文件 main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="mat