在main.xml中

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<TextView

android:id="@+id/mych"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text=""/>

<Button

android:id="@+id/mybut"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="请选择水果"/>

</LinearLayout>

在MyDialogDemo.java程序中

package com.tarena.dialog;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.KeyEvent;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.ImageButton;

import android.widget.TextView;

public class MyDialogDemo extends Activity {

private Button mybut = null ; // 定义按钮

private TextView mych = null ; // 定义文本

private TextView mytext = null ; // 定义文本

private String fruitData [] = new String[] { "苹果", "西瓜", "水蜜桃" };

private boolean chData[] = new boolean[]{false,false,false};

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

super.setContentView(R.layout.main); // 调用布局管理器

this.mybut = (Button) super.findViewById(R.id.mybut) ; // 取得按钮

this.mych = (TextView) super.findViewById(R.id.mych) ; // 取得文本

this.mybut.setOnClickListener(new OnClickListenerImpl()) ; // 设置事件类

}

private class OnClickListenerImpl implements OnClickListener {

public void onClick(View view) {

Dialog dialog = new AlertDialog.Builder(MyDialogDemo.this)

.setIcon(R.drawable.ic_launcher)

.setTitle("请选择你喜欢吃的水果?")

.setPositiveButton("确定", new DialogInterface.OnClickListener() {

public void onClick(DialogInterface dialog, int which) {

}

})

.setNegativeButton("取消", new DialogInterface.OnClickListener() {

public void onClick(DialogInterface dialog, int which) {

}

}).setMultiChoiceItems(MyDialogDemo.this.fruitData,

MyDialogDemo.this.chData, new DialogInterface

.OnMultiChoiceClickListener() {

public void onClick(DialogInterface dialog, int which, boolean isChecked) {

for(int x = 0; x < MyDialogDemo.this.fruitData.length; x++){

if(x == which && isChecked){ //被选中

MyDialogDemo.this.mych.append(MyDialogDemo.this.fruitData[x] + "\n");

}

}

}

}).create() ;

dialog.show() ;

}

}

}



更多相关文章

  1. 高德地图自定义点聚合样式Android
  2. 【翻译】(8-补丁1)Android接口定义语言(AIDL)
  3. Android_布局属性大全
  4. Android应用程序键盘(Keyboard)消息处理机制分析(26)
  5. android中的两端对齐
  6. Android(安卓)通过继承TextView类自定义字体默认颜色
  7. Android(安卓)ListView(Selector 背景图片 全选 Checkbox等按钮)
  8. 自己定义的Tabhost
  9. android 自定义对话框 背景透明

随机推荐

  1. android 计时器,倒计时
  2. osg for android 学习之三:老外的步骤,包括
  3. 封装Android(安卓)Volley请求工具
  4. android activity半透明
  5. 【Android】Toast显示乱码解决办法
  6. Android连接远程服务器
  7. android kernel 初始化 2
  8. Android(安卓)Studio设置gradle代理
  9. Android--问题处理
  10. android 语音识别