DBMNG数据库管理与应用

书籍是全世界的营养品。生活里没有书籍,就好像没有阳光;智慧里没有书籍,就好像鸟儿没有翅膀。
当前位置:首页 > 移动应用 > Android

Android多项选择CheckBox

多项选择(CheckBox)

CheckBox 类是 Button 的子类,层次关系如下:

android.widget.Button
android.widget.CompoundButton
android.widget.CheckBox

CheckBox 类方法

CheckBox 示例

完整工程:http://download.csdn.net/detail/sweetloveft/9400761
下述程序中,主要学习 CheckBox 和 Toast 的用法,CheckBox 作为复选框,选中未选中只有 true 和 false 的数值,必须添加具体的监听事件,才能确保其在状态改变时执行对应动作,而 Toast 通知的作用是创建一个浮动文本,浮于文字上方,显现一段时间后退出,需要注意这个延时是累积的,同时快速触发多个 Toast 时,每个 Toast 必须在前者显示结束后才能显示
此外要学习下 Toast 的 Gravity 位置有哪些,要知道以下内容,其中 setGravity 中,x > 0 右移反之左移,y > 0 上移反之下移。

1.MainActivity.java

  1. package com.sweetlover.activity;  
  2.   
  3. import com.sweetlover.checkboxdemo.R;  
  4.   
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.view.Gravity;  
  8. import android.view.View;  
  9. import android.widget.CheckBox;  
  10. import android.widget.CompoundButton;  
  11. import android.widget.CompoundButton.OnCheckedChangeListener;  
  12. import android.widget.Toast;  
  13.   
  14. public class MainActivity extends Activity {  
  15.   
  16.     private static final int CTRL_NUM = 4;  
  17.       
  18.     private CheckBox[] checkBox = null;  
  19.       
  20.     @Override  
  21.     protected void onCreate(Bundle savedInstanceState) {  
  22.         // TODO Auto-generated method stub  
  23.         super.onCreate(savedInstanceState);  
  24.         setContentView(R.layout.activity_main);  
  25.           
  26.         checkBox = new CheckBox[CTRL_NUM];  
  27.         checkBox[0] = (CheckBox)findViewById(R.id.checkBox1);  
  28.         checkBox[1] = (CheckBox)findViewById(R.id.checkBox2);  
  29.         checkBox[2] = (CheckBox)findViewById(R.id.checkBox3);  
  30.         checkBox[3] = (CheckBox)findViewById(R.id.checkBox4);  
  31.           
  32.         // TODO Register events  
  33.         for (int i = 0; i < CTRL_NUM; i++)  
  34.             checkBox[i].setOnCheckedChangeListener(new CheckBoxListener());  
  35.     }  
  36.   
  37.     public void onClickSubmit(View view) {  
  38.         String str = "";  
  39.         for (int i = 0; i < CTRL_NUM; i++) {  
  40.             if (checkBox[i].isChecked())  
  41.                 str += checkBox[i].getText() + " ";  
  42.         }  
  43.         Toast.makeText(this, str + "被选择", Toast.LENGTH_LONG).show();  
  44.     }  
  45.       
  46.     class CheckBoxListener implements OnCheckedChangeListener {  
  47.   
  48.         @Override  
  49.         public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {  
  50.             // TODO Auto-generated method stub  
  51.             String text = buttonView.getText().toString();  
  52.             if (isChecked)  
  53.                 text += " 被选择";  
  54.             else  
  55.                 text += " 取消选择";  
  56.             Toast toast = Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT);  
  57.             toast.setGravity(Gravity.CENTER, 55);  
  58.             toast.show();  
  59.         }  
  60.     }  
  61. }  


2.activity_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:orientation="vertical"  
  6.     android:padding="30dp" >  
  7.   
  8.     <TextView  
  9.         android:id="@+id/textView1"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:layout_gravity="center_horizontal"  
  13.         android:text="@string/Tittle"  
  14.         android:textAppearance="?android:attr/textAppearanceMedium" />  
  15.   
  16.     <CheckBox  
  17.         android:id="@+id/checkBox1"  
  18.         android:layout_width="wrap_content"  
  19.         android:layout_height="wrap_content"  
  20.         android:layout_gravity="center_horizontal"  
  21.         android:layout_marginTop="30dp"  
  22.         android:text="@string/Profile1" />  
  23.   
  24.     <CheckBox  
  25.         android:id="@+id/checkBox2"  
  26.         android:layout_width="wrap_content"  
  27.         android:layout_height="wrap_content"  
  28.         android:layout_gravity="center_horizontal"  
  29.         android:layout_marginTop="30dp"  
  30.         android:text="@string/Profile2" />  
  31.   
  32.     <CheckBox  
  33.         android:id="@+id/checkBox3"  
  34.         android:layout_width="wrap_content"  
  35.         android:layout_height="wrap_content"  
  36.         android:layout_gravity="center_horizontal"  
  37.         android:layout_marginTop="30dp"  
  38.         android:text="@string/Profile3" />  
  39.   
  40.     <CheckBox  
  41.         android:id="@+id/checkBox4"  
  42.         android:layout_width="wrap_content"  
  43.         android:layout_height="wrap_content"  
  44.         android:layout_gravity="center_horizontal"  
  45.         android:layout_marginTop="30dp"  
  46.         android:text="@string/Profile4" />  
  47.   
  48.     <Button  
  49.         android:id="@+id/button1"  
  50.         android:layout_width="wrap_content"  
  51.         android:layout_height="wrap_content"  
  52.         android:layout_gravity="center_horizontal"  
  53.         android:layout_marginTop="30dp"  
  54.         android:onClick="onClickSubmit"  
  55.         android:text="@string/Submit" />  
  56.   
  57. </LinearLayout>  


3.string.xml

  1. <resources>  
  2.   
  3.     <string name="app_name">CheckBoxDemo</string>  
  4.     <string name="Tittle">请选择喜欢的情景模式</string>  
  5.     <string name="Profile1">上班模式</string>  
  6.     <string name="Profile2">家庭模式</string>  
  7.     <string name="Profile3">旅游模式</string>  
  8.     <string name="Profile4">会议模式</string>  
  9.     <string name="Submit">提交</string>  
  10.   
  11. </resources>  


4.AndroidManifest.xml

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     package="com.sweetlover.checkboxdemo"  
  3.     android:versionCode="1"  
  4.     android:versionName="1.0" >  
  5.   
  6.     <uses-sdk  
  7.         android:minSdkVersion="8"  
  8.         android:targetSdkVersion="19" />  
  9.   
  10.     <application  
  11.         android:allowBackup="true"  
  12.         android:icon="@drawable/ic_launcher"  
  13.         android:label="@string/app_name"  
  14.         android:theme="@style/AppTheme" >  
  15.         <activity android:name="com.sweetlover.activity.MainActivity">  
  16.             <intent-filter>  
  17.                 <action android:name="android.intent.action.MAIN"/>  
  18.                 <category android:name="android.intent.category.LAUNCHER"/>  
  19.             </intent-filter>  
  20.         </activity>  
  21.     </application>  
  22.   
  23. </manifest>
本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号