安卓弹出对话框——AlertDialog(二)

在Android中,启动一个对话框有三种方式:

1、定义一个新的activity,并将其主题设置为对话框风格

2、使用AlertDialog类,并且显示它

3、使用 Android的Dialog类的子类,并且显示它

现在学习AlertDialog.Builder创建各种形式的对话框。

首先,看看启动界面如下:

用土司来显示效果,因为多次用到,所以将其抽象为一个方法。

[java] view plaincopy

  1. protected void showToast(String string) {
  2. Toast.makeText(this, string, Toast.LENGTH_SHORT).show();
  3. }

1、点击第一个按钮后,出现如下对话框:

对于这个对话框,我们用到了AlertDialog.Builder类的几个方法:

setTitle:设置标题

setIcon:设置图标

setMessage:设置文本

setPositiveButton:设置第一个按钮

setNeutralButton:第二个按钮

setNegativeButton:第三个按钮

本段代码如下:

[java] view plaincopy

  1. public void onClick(View v) {
  2. switch (v.getId()) {
  3. case R.id.button1:
  4. new AlertDialog.Builder(this)
  5. .setTitle("这是一个最简单的对话框")
  6. .setIcon(R.drawable.img1)
  7. .setMessage("你好!!!")
  8. .setPositiveButton("开始", new DialogInterface.OnClickListener() {
  9. @Override
  10. public void onClick(DialogInterface dialog, int which) {
  11. DialogActivity.this.showToast("你点击了开始按钮      "+ which);
  12. }
  13. })
  14. .setNeutralButton("暂停", new DialogInterface.OnClickListener() {
  15. @Override
  16. public void onClick(DialogInterface dialog, int which) {
  17. DialogActivity.this.showToast("你点击了暂停按钮      "+ which);
  18. }
  19. })
  20. .setNegativeButton("退出", new DialogInterface.OnClickListener() {
  21. @Override
  22. public void onClick(DialogInterface dialog, int which) {
  23. DialogActivity.this.showToast("你点击了退出按钮 " + which);
  24. }
  25. }).show();
  26. break;

2、第二个对话框效果如下图

 

对于这个对话框,我们用到了这个方法

setItem(),即将setMessage改成这个方法就可以了。

代码如下:其中items是一个成员变量。final String[] items = {"开始","暂停","退出"};

[java] view plaincopy

  1. case R.id.button2:
  2. new AlertDialog.Builder(this)
  3. .setTitle("选项列表对话框")
  4. .setIcon(R.drawable.img2)
  5. //items的第一个参数也可以接受itemID,所以可写在xml文件中
  6. .setItems(items, new DialogInterface.OnClickListener() {
  7. @Override
  8. public void onClick(DialogInterface dialog, int which) {
  9. DialogActivity.this.showToast("你点击了按钮 " + items[which]);
  10. }
  11. }).show();
  12. break;

3、第三个对话框:

setSingleChoiceItem,设置单选列表对话框

代码如下:

[java] view plaincopy

  1. case R.id.button3:
  2. new AlertDialog.Builder(this)
  3. .setTitle("带单选框的列表对话框")
  4. .setIcon(R.drawable.img3)
  5. //setSingleChoiceItems()的第二个参数是设置默认选项,选项索引从0开始,-1代表不选择任何选项。
  6. .setSingleChoiceItems(items, -1, new DialogInterface.OnClickListener() {
  7. @Override
  8. public void onClick(DialogInterface dialog, int which) {
  9. DialogActivity.this.showToast("你点击了按钮 " + items[which]);
  10. //需调用这个方法,使点击后对话框消失,不然一直不会消失的
  11. dialog.cancel();
  12. }
  13. }).create().show();
  14. break;

4、第四个对话框:

主要用到了方法:

setMultiChoiceItems

代码如下:

[java] view plaincopy

  1. case R.id.button4:
  2. new AlertDialog.Builder(this)
  3. .setTitle("你的爱好有:")
  4. .setIcon(R.drawable.img3)
  5. .setMultiChoiceItems(R.array.string_array_name, null, new DialogInterface.OnMultiChoiceClickListener() {
  6. @Override
  7. public void onClick(DialogInterface dialog, int which, boolean isChecked) {
  8. String[] array = DialogActivity.this.getResources().getStringArray(R.array.string_array_name);
  9. String str;
  10. if(isChecked) {
  11. number++;
  12. }else {
  13. number--;
  14. }
  15. DialogActivity.this.showToast(array[which] + (isChecked ?" 选中了":" 取消了") );
  16. }
  17. })
  18. .setPositiveButton("确定", new DialogInterface.OnClickListener() {
  19. @Override
  20. public void onClick(DialogInterface dialog, int which) {
  21. DialogActivity.this.showToast("你一共选择了      "+ number + "项");
  22. }
  23. }).show();
  24. break;

这次,并没有直接用数组,而是在strings.xml中定义的一个数组资源

[xhtml] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string-array  name="string_array_name">
  4. <item>健美操</item>
  5. <item>跳舞</item>
  6. <item>跑步</item>
  7. </string-array>
  8. </resources>

5、第5个对话框:

setView(view)方法来显示登录框。接受的参数为View(view,editText的组合),以LayoutInflater来实现。

要得到LayoutInflater(布局泵),只需要调用

LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

我们用inflater .inflater()用来找layout下xml布局文件,并且实例化。

类似于findVIewbyID,区别是一个得到整个布局,一个得到单个的组件。

代码如下:

[java] view plaincopy

  1. case R.id.button5:
  2. LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  3. View view = inflater.inflate(R.layout.dialog, null);
  4. new AlertDialog.Builder(this)
  5. .setTitle("登陆框")
  6. .setIcon(R.drawable.img4)
  7. .setView(view)
  8. .setPositiveButton("确定", new DialogInterface.OnClickListener() {
  9. @Override
  10. public void onClick(DialogInterface dialog, int which) {
  11. DialogActivity.this.showToast("正在登录,请稍后。。。");
  12. }
  13. }).show();

res/layout/dialog.xml布局为两个TextView,两个EditText,如下:

[xhtml] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:orientation="vertical">
  7. <TextView
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:text="账号"
  11. />
  12. <EditText
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:id="@+id/username"
  16. />
  17. <TextView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="密码"
  21. />
  22. <EditText
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content"
  25. android:id="@+id/password"
  26. />
  27. </LinearLayout>

【转】http://blog.csdn.net/kuangc2008/article/details/6358915

安卓弹出对话框——AlertDialog(二)

时间: 2024-10-12 12:26:48

安卓弹出对话框——AlertDialog(二)的相关文章

安卓弹出对话框——Alertdialog(一)

首先看各种样式的对话框: 我们看到,Dialog有很多的子类实现,所以我们要定义一个对话框,使用其子类来实例化一个即可,而不要直接使用Dialog这个父类来构造. 二.AlertDialog 今天我们重点要来了解的就是AlertDialog对话框,我们看到,AlertDialog是Dialog的一个直接子类. 使用AlertDialog,我们可以显示一个标题,最多3个按钮操作,以及一组选择框或者是自己定义的弹出框. 这里借用android的官方文档提供的一个图来看看AlertDialog框的组成

安卓弹出对话框,禁用返回键使其消失

AlertDialog.Builder setCancelable用法 分类: android2012-05-04 15:50 2182人阅读 评论(0) 收藏 举报 dialogapi AlertDialog.Builder的setCancelable public AlertDialog.Builder setCancelable (boolean cancelable) Since: API Level 1 Sets whether the dialog is cancelable or

安卓飞机大战(三) 弹出对话框

在游戏时,不管是退出游戏还是选择战机,都要弹出一个对话框,需要以下代码 按一个按钮弹出对话框 Layout文件:(添加一个按钮) <Button        android:id="@+id/button1"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="准备起飞

怎样在安卓中实现在锁屏状态下弹出对话框,并可以震动和铃声,就像闹钟似的?

============问题描述============ 我想要在应用弹出对话框,程序在后台运行,当达到条件后弹出对话框并有震动和铃声,但是在锁屏状态下却没反应,有什么办法解决吗? ============解决方案1============ // 解锁 KeyguardManager manager = (KeyguardManager) getSystemService(KEYGUARD_SERVICE); if( manager.inKeyguardRestrictedInputMode()

service里面弹出对话框

如何在service里面弹出对话框先给一个需求:需要在service里面监听短信的接收,如果接收到短信了,弹出一个dialog来提示用户打开. 看看效果图:(直接在主桌面上弹出) service中弹出提示框: AlertDialog.Builder alertDialog = new AlertDialog.Builder(this); alertDialog.setMessage("有新消息,是否查看?"); alertDialog.setPositiveButton("否

经常使用的android弹出对话框

我们在平时做开发的时候,免不了会用到各种各样的对话框,相信有过其它平台开发经验的朋友都会知道,大部分的平台都仅仅提供了几个最简单的实现,假设我们想实现自己特定需求的对话框,大家可能首先会想到,通过继承等方式,重写我们自己的对话框.当然,这也是不失为一个不错的解决方式,可是一般的情况却是这样,我们重写的对话框,或许仅仅在一个特定的地方会用到,为了这一次的使用,而去创建一个新类,往往有点杀鸡用牛刀的感觉,甚至会对我们的程序添加不必要的复杂性,对于这样的情形的对话框有没有更优雅的解决方式呢?    

ASP.NET弹出对话框

自己写的窗口弹出:Page.RegisterClientScriptBlock("alert", "<script>alert('两次密码不一致,请重新输入!')</script>"); [以下为网上查询到的方法] 在ASP.NET程序的开发过程中,常常需要向用户给出提示信息,比如是否"操作成功","确定"还是"取消"操作: (1) 点击页面上的按钮,弹出一个对话框提示是"

Android 手机卫士--弹出对话框

在<Android 手机卫士--解析json与消息机制发送不同类型消息>一文中,消息机制发送不同类型的信息还没有完全实现,在出现异常的时候,应该弹出吐司提示异常,代码如下: private Handler mHandler = new Handler() { // public void handleMessage(android.os.Message msg) { switch (msg.what) { case UPDATE_VERSION: //弹出对话框,提示用户更新 //showUp

Android点击返回键back时弹出对话框Dialog

public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) { ExitDialog(MainActivity.this).show(); return true; } return super.onKeyDown(keyCode, event); } private Dialog ExitDialog