博兴县建设局官方网站,学校网页设计说明,网站建设建站经验,wordpress 百度分享上一篇文章中学习了RadioButton。知道了RadionButton的基本用法#xff0c;实现起来也是听简单的和RadioButton一样CheckBox也是一个使用的非常多的控件#xff0c;Android中它的的用法也挺简单的。以一个例子程序为例#xff1a;同样先看一个常规的实现#xff1a;布局文件…上一篇文章中学习了RadioButton。知道了RadionButton的基本用法实现起来也是听简单的和RadioButton一样CheckBox也是一个使用的非常多的控件Android中它的的用法也挺简单的。以一个例子程序为例同样先看一个常规的实现布局文件如下 再看一看一个特别一点的布局文件的代码如下 对于CheckBox的监听也是差不多的;package com.kiritor.ui_checkbox; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.CompoundButton.OnCheckedChangeListener; public class MainActivity extends Activity { private CheckBox boxJavanull; private CheckBox boxCPlusnull; Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); boxCPlus (CheckBox)findViewById(R.id.c); boxJava (CheckBox)findViewById(R.id.java); boxJava.setOnCheckedChangeListener(new OnCheckedChangeListener() { Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub System.out.println(checked); } }); } 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; } } 上述实现起来都不复杂源代码就不给出了Over