Android(安卓)CheckBox 控件

CheckBox 复选框是用户可以切换 on/off 的开关。当向用户呈现一组非互斥的可选选项时,应使用复选框。


CheckBox 属性

以下是与 CheckBox 控件相关的重要属性。您可以查看 Android 官方文档,以获取完整的属性列表和可用于更改这些属性的相关方法。

继承自 android.widget.TextView 类:

编号属性 & 描述
1

android:autoText

如果设置,则指定此 TextView 具有文本输入方法并自动更正一些常见拼写错误。

2

android:drawableBottom

这是要在文本下方绘制的绘图。

3

android:drawableRight

这是要绘制到文本右侧的绘图。

4

android:editable

如果设置,则指定此 TextView 具有输入方法。

5

android:text

这是要显示的文本。

继承自 android.view.View 类:

编号属性 & 描述
1

android:background

这是一个可作为背景使用的绘图。

2

android:content描述

它定义了简要描述视图内容的文本。

3

android:id

这提供了此视图的标识符名称。

4

android:onClick

这是单击视图时要调用的此视图上下文中方法的名称。

5

android:visibility

这将控制视图的初始可见性。


实例

这个实例将带您完成简单的步骤,展示如何使用线性布局和复选框创建自己的 Android 应用程序。

步骤描述
1您将使用 Android Studio IDE 创建一个 Android 应用程序,并将其命名为 com.example.myapplication 包下的 myapplication。如 Hello World 实例一章中所述。
2修改 src/MainActivity.java 文件添加一个点击事件。
3修改 res/layout/activity_main.xml 文件来包含 Android UI 控件。
4无需声明默认字符串常量 Android studio 负责 string.xml 中的默认常量
5运行应用程序以启动 Android 模拟器并验证应用程序中所做更改的结果。

以下是修改后的主活动文件 src/MainActivity.java 的内容。此文件可以包括每个基本生命周期方法。

  1. package com.example.myapplication;
  2. import android.os.Bundle;
  3. import android.app.Activity;
  4. import android.widget.Button;
  5. import android.view.View;
  6. import android.view.View.OnClickListener;
  7. import android.widget.CheckBox;
  8. import android.widget.Toast;
  9. public class MainActivity extends Activity {
  10. CheckBox ch1,ch2;
  11. Button b1,b2;
  12. @Override
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_main);
  16. ch1=(CheckBox)findViewById(R.id.checkBox1);
  17. ch2=(CheckBox)findViewById(R.id.checkBox2);
  18. b1=(Button)findViewById(R.id.button);
  19. b2=(Button)findViewById(R.id.button2);
  20. b2.setOnClickListener(new View.OnClickListener() {
  21. @Override
  22. public void onClick(View v) {
  23. finish();
  24. }
  25. });
  26. b1.setOnClickListener(new View.OnClickListener() {
  27. @Override
  28. public void onClick(View v) {
  29. StringBuffer result = new StringBuffer();
  30. result.append("Thanks : ").append(ch1.isChecked());
  31. result.append("\nThanks: ").append(ch2.isChecked());
  32. Toast.makeText(MainActivity.this, result.toString(),
  33. Toast.LENGTH_LONG).show();
  34. }
  35. });
  36. }
  37. }

下面是 res/layout/activity_main.xml 文件的内容:

  1. <RelativeLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity">
  11. <TextView
  12. android:id="@+id/textView1"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:text="Example of checkbox"
  16. android:layout_alignParentTop="true"
  17. android:layout_centerHorizontal="true"
  18. android:textSize="30dp" />
  19. <CheckBox
  20. android:id="@+id/checkBox1"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="Do you like Tutorials Point"
  24. android:layout_above="@+id/button"
  25. android:layout_centerHorizontal="true" />
  26. <CheckBox
  27. android:id="@+id/checkBox2"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:text="Do you like android "
  31. android:checked="false"
  32. android:layout_above="@+id/checkBox1"
  33. android:layout_alignLeft="@+id/checkBox1"
  34. android:layout_alignStart="@+id/checkBox1" />
  35. <TextView
  36. android:id="@+id/textView2"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_alignLeft="@+id/checkBox1"
  40. android:layout_below="@+id/textView1"
  41. android:layout_marginTop="39dp"
  42. android:text="Tutorials point"
  43. android:textColor="#ff87ff09"
  44. android:textSize="30dp"
  45. android:layout_alignRight="@+id/textView1"
  46. android:layout_alignEnd="@+id/textView1" />
  47. <Button
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:text="Ok"
  51. android:id="@+id/button"
  52. android:layout_alignParentBottom="true"
  53. android:layout_alignLeft="@+id/checkBox1"
  54. android:layout_alignStart="@+id/checkBox1" />
  55. <Button
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:text="Cancel"
  59. android:id="@+id/button2"
  60. android:layout_alignParentBottom="true"
  61. android:layout_alignRight="@+id/textView2"
  62. android:layout_alignEnd="@+id/textView2" />
  63. <ImageButton
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:id="@+id/imageButton"
  67. android:src="@drawable/abc"
  68. android:layout_centerVertical="true"
  69. android:layout_centerHorizontal="true" />
  70. </RelativeLayout>

下面是 res/values/strings.xml 文件,定义了新常量:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">MyApplication</string>
  4. </resources>

下面是 AndroidManifest.xml 文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.myapplication" >
  4. <application
  5. android:allowBackup="true"
  6. android:icon="@drawable/ic_launcher"
  7. android:label="@string/app_name"
  8. android:theme="@style/AppTheme" >
  9. <activity
  10. android:name="com.example.myapplication.MainActivity"
  11. android:label="@string/app_name" >
  12. <intent-filter>
  13. <action android:name="android.intent.action.MAIN" />
  14. <category android:name="android.intent.category.LAUNCHER" />
  15. </intent-filter>
  16. </activity>
  17. </application>
  18. </manifest>

让我们尝试运行 MyApplication 应用程序。我假设您在进行环境设置时创建了 AVD。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse Eclipse Run Icon 图标。Android studio 在您的 AVD 上安装应用程序并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口:

用户需要您选中 "do you like android" 复选框。然后按 OK 按钮,如果所有过程都正确,它将显示 "谢谢"。或者按下 Cancel 按钮,如果用户按下取消按钮将关闭应用程序。


练习

建议在编程时使用布局 XML 文件中的 CheckBox 的不同属性来尝试上面的示例,以使 CheckBox 具有不同的外观。尝试使其可编辑,更改为字体颜色、字体系列、宽度、文本大小等,然后查看结果。您还可以在一个活动中使用多个 CheckBox 控件来尝试上面的实例。

分类导航