Android开发————CheckBox学习笔记

示例代码

package com.person.radiogrouptest;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;

public class AtyUsingCheckBox extends Activity {
	private CheckBox shuaige, meinv, renyao;
	private Button regItem;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.aty_using_checkbox);

		shuaige = (CheckBox) findViewById(R.id.shuaige);

		meinv = (CheckBox) findViewById(R.id.meinv);

		renyao = (CheckBox) findViewById(R.id.renyao);

		regItem = (Button) findViewById(R.id.regitem);
		regItem.setOnClickListener(new View.OnClickListener() {

			public void onClick(View v) {
				String str = "你的综合体是 : \n";
				if (shuaige.isChecked()) {
					str += "帅哥\n";
				}
				if (meinv.isChecked()) {
					str += "美女\n";
				}
				if (renyao.isChecked()) {
					str += "人妖\n";
				}
				new AlertDialog.Builder(AtyUsingCheckBox.this).setTitle("综合体是")
						.setMessage(str).setPositiveButton("关闭", null).show();
			}
		});
	}
}


CheckBox的XML布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="你是谁?" />

    <CheckBox
        android:id="@+id/shuaige"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="帅哥?" />

    <CheckBox
        android:id="@+id/meinv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="美女?" />

    <CheckBox
        android:id="@+id/renyao"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="人妖?" />

    <Button
        android:id="@+id/regitem"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="提交" />

</LinearLayout>

最后在manifest的xml文件中进行该Activity进行注册

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值