示例
本示例将带您完成一些简单的步骤,使用CheckBox创建自己的Android应用程序。
- 您将使用Android Studio创建一个Android应用程序,并将其命名为Demo,位于com.jc2182.demo包下,如Hello World示例一章中所述。
- 修改src/MainActivity.java文件以添加click事件。
- 修改res/layout/activity_main.xml文件的默认内容以包括Android UI控件。
- 运行该应用程序以启动Android模拟器并验证在该应用程序中所做更改的结果。
以下是修改后的主要活动文件src/com.jc2182.demo/MainActivity.java的内容。该文件可以包括每个基本生命周期方法。
package com.jc2182.demo;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.Toast;
public class MainActivity extends Activity {
CheckBox ch1,ch2;
Button b1,b2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ch1=(CheckBox)findViewById(R.id.checkBox1);
ch2=(CheckBox)findViewById(R.id.checkBox2);
b1=(Button)findViewById(R.id.button);
b2=(Button)findViewById(R.id.button2);
b2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
StringBuffer result = new StringBuffer();
result.append("谢谢 : ").append(ch1.isChecked());
result.append("\n谢谢 : ").append(ch2.isChecked());
Toast.makeText(MainActivity.this, result.toString(), Toast.LENGTH_LONG).show();
}
});
}
}
以下是res/layout/activity_main.xml文件的内容-
<RelativeLayout
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"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="22dp"
android:layout_marginEnd="119dp"
android:text="checkbox示例"
android:textSize="30dp" />
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button"
android:layout_alignParentStart="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="118dp"
android:layout_marginBottom="94dp"
android:text="您喜欢菜鸟教程吗" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/checkBox1"
android:layout_alignStart="@+id/checkBox1"
android:layout_alignLeft="@+id/checkBox1"
android:layout_centerInParent="true"
android:layout_marginStart="-2dp"
android:layout_marginLeft="-2dp"
android:layout_marginBottom="18dp"
android:checked="false"
android:text="您喜欢android吗" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_alignLeft="@+id/checkBox1"
android:layout_alignEnd="@+id/textView1"
android:layout_alignRight="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginLeft="11dp"
android:layout_marginTop="30dp"
android:layout_marginEnd="44dp"
android:layout_marginRight="44dp"
android:text="菜鸟教程"
android:textColor="#ff87ff09"
android:textSize="30dp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/checkBox1"
android:layout_alignLeft="@+id/checkBox1"
android:layout_alignParentBottom="true"
android:layout_marginStart="-44dp"
android:layout_marginLeft="-44dp"
android:layout_marginBottom="98dp"
android:text="确定" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignEnd="@+id/textView2"
android:layout_alignRight="@+id/textView2"
android:layout_alignParentBottom="true"
android:layout_marginEnd="-70dp"
android:layout_marginRight="-70dp"
android:layout_marginBottom="98dp"
android:text="取消" />
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="145dp"
android:src="@drawable/logo" />
</RelativeLayout>
让我们尝试运行刚刚修改的应用程序。我假设您在进行环境设置时已创建了AVD。要从Android Studio运行该应用,请打开您项目的活动文件之一,然后工具栏中单击“运行”图标。Android studio将应用程序安装在您的AVD上并启动它,如果设置和应用程序一切正常,它将显示在“模拟器”窗口下面-
当勾选复选框,并点击确定时候如下所示。
建议在编程时尝试上述示例,在Layout XML文件中使用CheckBox的不同属性,以使CheckBox具有不同的外观。尝试使其可编辑,更改为字体颜色,字体系列,宽度,字体大小等,然后查看结果。您也可以尝试在一个活动中使用多个CheckBox控件的示例。