main.xml布局文件

              <?        xml version        =        "        1.0        "         encoding        =        "        utf-8        "        ?>        
< LinearLayout xmlns:android = " http://schemas.android.com/apk/res/android "
android:orientation
= " vertical " android:layout_width = " fill_parent "
android:layout_height
= " fill_parent " >
< EditText android:text = ""
android:id
= " @+id/editText "
android:layout_width
= " fill_parent "
android:layout_height
= " wrap_content "
android:editable
= " false "
android:cursorVisible
= " false " />
< Button android:text = " 显示复选框对话框 "
android:id
= " @+id/button "
android:layout_width
= " fill_parent "
android:layout_height
= " wrap_content " />
</ LinearLayout >

array.xml数组

              <?        xml version        =        "        1.0        "         encoding        =        "        utf-8        "        ?>        
< resources >
< string - array name = " hobby " >
< item > 游泳 </ item >
< item > 打篮球 </ item >
< item > 登山 </ item >
</ string - array >
</ resources >

AlertActivity类

              package         com.ljq.dialog;

import android.app.Activity;
import android.app.Dialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class AlertDialog extends Activity {
private EditText editText;
private final static int DIALOG = 1 ;
boolean [] flags = new boolean []{ false , false , false }; // 初始复选情况
String[] items = null ;

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

items
= getResources().getStringArray(R.array.hobby);
editText
= (EditText)findViewById(R.id.editText);
Button button
= (Button) findViewById(R.id.button);
button.setOnClickListener(
new View.OnClickListener() {
public void onClick(View v) {
// 显示对话框
showDialog(DIALOG);
}
});
}

/**
* 创建复选框对话框
*/
@Override
protected Dialog onCreateDialog( int id) {
Dialog dialog
= null ;
switch (id) {
case DIALOG:
Builder builder
= new android.app.AlertDialog.Builder( this );
// 设置对话框的图标
builder.setIcon(R.drawable.header);
// 设置对话框的标题
builder.setTitle( " 复选框对话框 " );
builder.setMultiChoiceItems(R.array.hobby, flags,
new DialogInterface.OnMultiChoiceClickListener(){
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
flags[which]
= isChecked;
String result
= " 您选择了: " ;
for ( int i = 0 ; i < flags.length; i ++ ) {
if (flags[i]){
result
= result + items[i] + " " ;
}
}
editText.setText(result.substring(
0 , result.length() - 1 ));
}
});

// 添加一个确定按钮
builder.setPositiveButton( " 确 定 " , new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int which) {

}
});
// 创建一个复选框对话框
dialog = builder.create();
break ;
}
return dialog;
}

}

运行结果

Android之复选框对话框

更多相关文章

  1. Android之列表对话框
  2. Android之普通对话框
  3. Android之单选按钮对话框
  4. android解析json数组
  5. android实践--进度对话框(ProgressDialog)
  6. Android 对话框【Dialog】去除白色边框代码
  7. Android UI设计--半透明效果对话框及activity(可做遮罩层)
  8. Android对话框里面的输入值获取不到,空指针异常
  9. Android的八种对话框的实现

随机推荐

  1. 【Android的从零单排开发日记】之入门篇(
  2. Android中文翻译组 - 简介
  3. Android(安卓)Studio中AspectJ的简单使用
  4. Android(安卓)Design Support Library(2)-
  5. 如何在unity中生成android工程
  6. Android是什么(What is Android)
  7. Android学习笔记之Android安装问题
  8. Android Fragment的增加,删除,添加
  9. Android Studio小技巧
  10. android EditView的一些问题