Android入门之AlertDialog用法实例分析

本文实例讲述的是AlertDialog,这种对话框会经常遇到。AlertDialog跟WIN32开发中的Dialog不一样,AlertDialog是非阻塞的,而阻塞的对话框用的是PopupWindow。

先贴出该程序运行的截图:

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"
  >

<Button android:id="@+id/Button01" android:layout_height="wrap_content" android:text="非Layout型对话框" android:layout_width="fill_parent"></Button>
<Button android:id="@+id/Button02" android:layout_height="wrap_content" android:text="Layout型对话框" android:layout_width="fill_parent"></Button><View android:id="@+id/View01" android:layout_width="wrap_content" android:layout_height="wrap_content"></View>

</LinearLayout>

下图是非Layout型对话框,直接使用AlertDialog

下图是使用了Layout的对话框,可以自定义控件,实现更复杂的对话框

dialoglayout.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="wrap_content"
 android:orientation="vertical">
 <EditText android:layout_height="wrap_content"
 android:layout_width="fill_parent" android:layout_marginLeft="20dip"
 android:layout_marginRight="20dip" android:textAppearance="?android:attr/textAppearanceMedium" android:id="@+id/edtInput"/>
</LinearLayout>

程序源码:

package com.testAlertDialog;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.PopupWindow;

public class testAlertDialog extends Activity {
 Button btnShowDialog;
 Button btnShowDialog_Layout;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //定义按钮
    btnShowDialog=(Button)this.findViewById(R.id.Button01);
    btnShowDialog.setOnClickListener(new ClickEvent());
    btnShowDialog_Layout=(Button)this.findViewById(R.id.Button02);
    btnShowDialog_Layout.setOnClickListener(new ClickEvent());
  }

  //统一处理按键事件
  class ClickEvent implements OnClickListener{

   @Override
   public void onClick(View v) {
   // TODO Auto-generated method stub
   if(v==btnShowDialog)
    showDialog(testAlertDialog.this);

   else if(v==btnShowDialog_Layout)
    showDialog_Layout(testAlertDialog.this);

   }

  }

  //显示基本的AlertDialog
 private void showDialog(Context context) {
 AlertDialog.Builder builder = new AlertDialog.Builder(context);
 builder.setIcon(R.drawable.icon);
 builder.setTitle("Title");
 builder.setMessage("Message");
 builder.setPositiveButton("Button1",
  new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int whichButton) {
   setTitle("点击了对话框上的Button1");
   }
  });
 builder.setNeutralButton("Button2",
  new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int whichButton) {
   setTitle("点击了对话框上的Button2");
   }
  });
 builder.setNegativeButton("Button3",
  new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int whichButton) {
   setTitle("点击了对话框上的Button3");
   }
  });
 builder.show();
 }

  //显示基于Layout的AlertDialog
 private void showDialog_Layout(Context context) {
 LayoutInflater inflater = LayoutInflater.from(this);
 final View textEntryView = inflater.inflate(
  R.layout.dialoglayout, null);
 final EditText edtInput=(EditText)textEntryView.findViewById(R.id.edtInput);
 final AlertDialog.Builder builder = new AlertDialog.Builder(context);
 builder.setCancelable(false);
 builder.setIcon(R.drawable.icon);
 builder.setTitle("Title");
 builder.setView(textEntryView);
 builder.setPositiveButton("确认",
  new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int whichButton) {
   setTitle(edtInput.getText());
   }
  });
 builder.setNegativeButton("取消",
  new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int whichButton) {
   setTitle("");
   }
  });
 builder.show();
 }
}
(0)

相关推荐

  • Android修改源码解决Alertdialog触摸对话框边缘消失的问题

    研究其父类时候发现,可以设置这么一条属性,在AlertDialog.Builder.create()之后才能调用这两个方法 方法一: setCanceledOnTouchOutside(false);调用这个方法时,按对话框以外的地方不起作用.按返回键还起作用 方法二: setCanceleable(false);调用这个方法时,按对话框以外的地方不起作用.按返回键也不起作用 这两个方法都属于Dialog方法,可查阅源码 修改后的源码如下: 复制代码 代码如下: case 1:         

  • Android AlertDialog自定义样式实现代码

    Android AlertDialog自定义样式 像列表这种选择项的弹出式对话框,要改变样式一般都采取重写layout方式 今天才了解到 其实可以自定义样式,与大家分享下,其实很简单 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.AlertDialogCustom)); 然后自定义自己的样式就可以了 <?xml version="1.0" en

  • Android使用自定义alertdialog实现确认退出按钮

    有时候我们需要在游戏或应用中用一些符合我们样式的提示框(AlertDialog),以下是我在开发一个小游戏中总结出来的.希望对大家有用. 先上效果图: 下面是用到的背景图或按钮的图片 经过查找资料和参考了一下例子后才知道,要实现这种效果很简单.就是在设置alertDialog的contentView. 以下的代码是写在Activity下的,代码如下: public boolean onKeyDown(int keyCode, KeyEvent event) { // 如果是返回键,直接返回到桌面

  • Android实现点击AlertDialog上按钮时不关闭对话框的方法

    本文实例讲述了Android实现点击AlertDialog上按钮时不关闭对话框的方法.分享给大家供大家参考.具体如下: 开发过程中,有时候会有这样的需求: 点击某个按钮之后显示一个对话框,对话框上面有一个输入框,并且有"确认"和"取消"两个按钮.当用户点击确认按钮时,需要对输入框的内容进行判断.如果内容为空则不关闭对话框,并toast提示. 使用AlertDialog.Builder创建对话框时,可以使用builder.setNegativeButton和build

  • Android中阻止AlertDialog关闭实例代码

    Android如何关闭AlertDialog.Builder对话框呢?AlertDialog.Builder对话框没有类似finish()或者dismiss()这样的方法. 但是它的父类AlertDialog有dismiss方法,而且AlertDialog.Builder在.show()的时候会得到一个AlertDialog对象,我们就可以用dismiss方法将该Builder关闭. AlertDialog.Builder builder = new AlertDialog.Builder(th

  • Android自定义单例AlertDialog详解

    当Android开发处理错误信息时,经常会以Dialog的形式显示错误信息,但是每次都new一个Dialog,很麻烦,也增加程序的开销,所以今天就分享一种自定义单例AlertDialog public class AlertDialog { private static AlertDialog alertDialog = null; private Context context; private Dialog dialog; private LinearLayout lLayout_bg; p

  • Android编程之自定义AlertDialog(退出提示框)用法实例

    本文实例讲述了Android编程自定义AlertDialog(退出提示框)用法,分享给大家供大家参考,具体如下: 有时候我们需要在游戏或应用中用一些符合我们样式的提示框(AlertDialog) 以下是我在开发一个小游戏中总结出来的.希望对大家有用. 先上效果图: 下面是用到的背景图或按钮的图片 经过查找资料和参考了一下例子后才知道,要实现这种效果很简单.就是在设置alertDialog的contentView. 以下的代码是写在Activity下的,代码如下: public boolean o

  • Android中AlertDialog各种对话框的用法实例详解

    目标效果: 程序运行,显示图一的几个按钮,点击按钮分别显示图二到图六的对话框,点击对话框的某一项或者按钮,也会显示相应的吐司输出. 1.activity_main.xml页面存放五个按钮. activity_main.xml页面: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools&

  • Android对话框AlertDialog.Builder使用方法详解

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

  • Android中AlertDialog的六种创建方式

     创建AlertDialog的步骤: 1.创建AlertDialog.Builder对象 2.调用Builder对象的setTitle方法设置标题,setIcon方法设置图标 3.调用Builder相关方法如setMessage方法.setItems方法.setSingleChoiceItems方法.setMultiChoiceItems方法.setAdapter方法.setView方法设置不同类型的对话框内容. 4.调用setPositiveButton.setNegativeButton.s

随机推荐