`
zhenping
  • 浏览: 82888 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

常用的组件RadioGroup和CheckBox笔记

 
阅读更多

RadioGroup和CheckBox在Android应用中相对常见,下面就把本人初次学习的笔记放上来。

Activity Layout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

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

        <RadioButton
            android:id="@+id/man"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/man" />

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

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <CheckBox
            android:id="@+id/baseball"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/baseball" >
        </CheckBox>

        <CheckBox
            android:id="@+id/basketball"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/basketball" >
        </CheckBox>

        <CheckBox
            android:id="@+id/football"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/football" >
        </CheckBox>

        <CheckBox
            android:id="@+id/swimming"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/swimming" >
        </CheckBox>
    </LinearLayout>

</LinearLayout>

Android Code

package cn.qiuzhping.module1;

import cn.qiuzhping.module1.R;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;

public class MainActivity extends Activity {

	private RadioGroup sex = null;
	private RadioButton man = null;
	private RadioButton woman = null;
	private CheckBox baseball = null;
	private CheckBox basketball = null;
	private CheckBox swimming = null;
	private CheckBox football = null;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		sex = (RadioGroup) findViewById(R.id.sex);
		man = (RadioButton) findViewById(R.id.man);
		woman = (RadioButton) findViewById(R.id.woman);
		baseball = (CheckBox) findViewById(R.id.baseball);
		basketball = (CheckBox) findViewById(R.id.basketball);
		swimming = (CheckBox) findViewById(R.id.swimming);
		football = (CheckBox) findViewById(R.id.football);
		sexSelect();
		hobbySelect();
	}

	public void hobbySelect() {

		baseball.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				if (isChecked) {
					Log.i("CheckBox", "baseball is Checked");
				} else {
					Log.i("CheckBox", "baseball is not Checked");
				}
			}

		});

		basketball
				.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
					@Override
					public void onCheckedChanged(CompoundButton buttonView,
							boolean isChecked) {
						if (isChecked) {
							Log.i("CheckBox", "basketball is Checked");
						} else {
							Log.i("CheckBox", "basketball is not Checked");
						}
					}

				});

		swimming.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				if (isChecked) {
					Log.i("CheckBox", "swimming is Checked");
				} else {
					Log.i("CheckBox", "swimming is not Checked");
				}
			}

		});

		football.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				if (isChecked) {
					Log.i("CheckBox", "football is Checked");
				} else {
					Log.i("CheckBox", "football is not Checked");
				}
			}

		});

	}

	public void sexSelect() {

		sex.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {
				if (man.getId() == checkedId) {
					Log.i("onCheckedChanged", "选择man");
				} else if (woman.getId() == checkedId) {
					Log.i("onCheckedChanged", "选择woman");
				} else {
					Log.i("onCheckedChanged", "没有选择");
				}
			}
		});
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="cn.qiuzhping.module1"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="14" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="cn.qiuzhping.module1.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>



分享到:
评论

相关推荐

    Android笔记

    总的来说,这些笔记涵盖了Android中的Intent使用、UI元素(如EditText和Menu)的操作、布局管理(尤其是RelativeLayout的属性)以及基本的交互组件(如RadioGroup和CheckBox)的使用。这些都是Android开发中常见的...

    android学习笔记之一常用控件.doc

    这篇学习笔记主要涵盖了几个常见的控件:EditText、RadioGroup与RadioButton、CheckBox、Spinner、AutoCompleteTextView以及MultiAutoCompleteTextView,还包括了DatePicker和TimePicker的使用。 1. **EditText**:...

    《Android应用开发揭秘》读书笔记

    - **桌面组件**:创建桌面快捷方式或实时文件夹,增强应用的可见性和便利性。 ### 开发工具与问题解决 - **Eclipse自动提示慢、卡死情况处理**:优化IDE性能,提高开发效率。 - **Android源码下载并绑定到Eclipse**...

    android开发笔记总结

    ### Android开发笔记总结 #### 学习基础 在深入探讨Android开发之前,我们先回顾一下基础知识,这是构建高质量Android应用程序的基石。 - **Java基础知识**:Android应用开发主要基于Java语言,因此熟悉Java是...

    android入门笔记

    以下是对标题“android入门笔记”和描述中提及的一些常用Android控件的详细说明: 1. TextView:TextView 是Android中最基本的文本显示组件,用于展示单行或多行静态文本。在XML布局文件中,我们可以通过`android:...

    Android开发实战经典----自己学习的笔记总结

    在Android开发中,基础知识至关重要,本笔记主要涵盖了从Java编程基础到Android UI组件的详细讲解。首先,开发者需要具备扎实的Java基础,包括面向对象的概念、MVC设计模式的应用,以及对HTML、JavaScript和XML的...

    Android学习笔记

    7. RadioGroup和RadioButton:用于单选按钮组,RadioGroup是单选按钮的容器,内部包含多个RadioButton,android:orientation属性定义其内部元素的排列方式,vertical表示垂直排列。 8. CheckBox:复选框控件,常...

    刚开始学习android笔记,和一些控件的整理

    ### Android基础知识及常用控件详解 #### 一、Android应用基础...以上就是关于Android基础知识及常用控件的详细介绍,这些控件在实际开发中非常实用,掌握了它们的使用方法后,可以更好地构建出丰富的用户界面和功能。

    android笔记

    根据提供的信息,我们可以深入探讨...以上内容涵盖了Activity的基本使用、各种布局管理器的特点和用途、常用的UI组件以及如何处理Activity的生命周期等问题。希望这些信息能够帮助您更好地掌握Android开发的关键技能。

    Android开发笔记SQLite优化记住密码功能

    Android开发笔记SQLite优化记住密码功能 Android开发笔记SQLite优化记住密码功能是Android...通过本文的介绍,读者可以了解Android开发笔记SQLite优化记住密码功能的实现方法和相关知识点,从而提高自己的开发能力。

    ChooseDemo

    雾山的Anrdoid学习笔记---CheckBox,RadioGroup&RadioButton的配套资源http://blog.csdn.net/tt75281920/article/details/26248451

Global site tag (gtag.js) - Google Analytics