Android复选框示例

本文介绍了在Android中如何使用`android.widget.CheckBox`创建和管理复选框。通过XML布局文件创建三个复选框,并在Java代码中添加监听器以响应复选框状态变化,当用户点击按钮时显示复选框的状态。示例代码在Eclipse 3.7和Android 2.3.3环境下测试通过。
摘要由CSDN通过智能技术生成

在Android中,您可以使用“ android.widget.CheckBox ”类来呈现复选框。

在本教程中,我们向您展示如何在XML文件中创建3个复选框,并演示如何使用侦听器检查复选框状态-选中还是未选中。

PS此项目在Eclipse 3.7中开发,并通过Android 2.3.3进行了测试。

1.自定义字符串

打开“ res / values / strings.xml ”文件,添加一些用户定义的字符串。

文件:res / values / strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello World, MyAndroidAppActivity!</string>
    <string name="app_name">MyAndroidApp</string>
    <string name="chk_ios">IPhone</string>
    <string name="chk_android">Android</string>
    <string name="chk_windows">Windows Mobile</string>
    <string name="btn_display">Display</string>
</resources>

2.复选框

打开“ res / layout / main.xml ”文件,在LinearLayout内添加3个“ CheckBox ”和一个按钮。

文件:res / layout / main.xml

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

    <CheckBox
        android:id="@+id/chkIos"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/chk_ios" />
		
    <CheckBox
        android:id="@+id/chkAndroid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/chk_android"
        android:checked="true" />

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

    <Button
        android:id="@+id/btnDisplay"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/btn_display" />

</LinearLayout>

默认情况下,选中复选框
android:checked="true"放入复选框元素以使其默认选中。 在这种情况下,默认情况下会选中“ Android”选项。

3.代码代码

在您的活动“ onCreate() ”方法内附加侦听器,以监视以下事件:

  1. 如果选中复选框ID:“ chkIos ”,则显示带有消息“ Bro,try Android”的浮动框。
  2. 如果单击了按钮,则显示一个浮动框并显示复选框状态。

文件:MyAndroidAppActivity.java

package com.mkyong.android;

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

public class MyAndroidAppActivity extends Activity {

  private CheckBox chkIos, chkAndroid, chkWindows;
  private Button btnDisplay;

  @Override
  public void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.main);

	addListenerOnChkIos();
	addListenerOnButton();
  }

  public void addListenerOnChkIos() {

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

	chkIos.setOnClickListener(new OnClickListener() {

	  @Override
	  public void onClick(View v) {
                //is chkIos checked?
		if (((CheckBox) v).isChecked()) {
			Toast.makeText(MyAndroidAppActivity.this,
		 	   "Bro, try Android :)", Toast.LENGTH_LONG).show();
		}

	  }
	});

  }

  public void addListenerOnButton() {

	chkIos = (CheckBox) findViewById(R.id.chkIos);
	chkAndroid = (CheckBox) findViewById(R.id.chkAndroid);
	chkWindows = (CheckBox) findViewById(R.id.chkWindows);
	btnDisplay = (Button) findViewById(R.id.btnDisplay);

	btnDisplay.setOnClickListener(new OnClickListener() {

          //Run when button is clicked
	  @Override
	  public void onClick(View v) {

		StringBuffer result = new StringBuffer();
		result.append("IPhone check : ").append(chkIos.isChecked());
		result.append("\nAndroid check : ").append(chkAndroid.isChecked());
		result.append("\nWindows Mobile check :").append(chkWindows.isChecked());

		Toast.makeText(MyAndroidAppActivity.this, result.toString(),
				Toast.LENGTH_LONG).show();

	  }
	});

  }
}

4.演示

运行应用程序。

1.结果:

android checkbox demo 1

2.如果选中“ iPhone”:

android checkbox demo2

3.选中“ iPhone”和“ Windows Mobile”,然后单击“显示”按钮:

android checkbox demo3

下载源代码

下载它– Android-Checkbox-Example.zip (15 KB)

参考文献

  1. Android CheckBox JavaDoc
  2. Android CheckBox示例

翻译自: https://mkyong.com/android/android-checkbox-example/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值