`
guochongcan
  • 浏览: 326929 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

AlertDialog 使用 扩展

 
阅读更多

AlertDialog

 

 

[功能]

也是一种Dialog

 

 

[原理]

1. AlertDialog 本身并没有构造函数 即 不可以通过 new AlertDialog(...) 来初始化 而只能通过 AlertDialog.Builder

2. 而 AlertDialog.Builder 比较像是AlertDialog的构造器 用于接收各种和 AlertDialog 有关的参数 然后通过 create() 来创建目标 AlertDialog

 

[代码 步骤]

1. 定义 AlertDialog.Builder 实例 并接受一些参数 如:图片 标题 正文

Java代码 复制代码 收藏代码
  1. ab = new AlertDialog.Builder(this);  
ab = new AlertDialog.Builder(this);

 

Java代码 复制代码 收藏代码
  1. ab.setTitle("HelloAlert").setMessage("Warning: its Alert Demo!").setIcon(R.drawable.robot);  
ab.setTitle("HelloAlert").setMessage("Warning: its Alert Demo!").setIcon(R.drawable.robot);

 

 

 2. 根据AlertDialog.Builder 创建 相应的 AlertDialog

Java代码 复制代码 收藏代码
  1. aDialog = ab.create();  
aDialog = ab.create();

 

 

3. 弹出 AlertDialog

Java代码 复制代码 收藏代码
  1. findViewById(R.id.button).setOnClickListener(new OnClickListener(){   
  2.             public void onClick(View v) {   
  3.                 // TODO Auto-generated method stub   
  4.                 aDialog.show();   
  5.             }   
  6.         });  
findViewById(R.id.button).setOnClickListener(new OnClickListener(){
			public void onClick(View v) {
				// TODO Auto-generated method stub
				aDialog.show();
			}
        });

 

 

4. 取消 AlertDialog

写道
因为该AlertDialog 所采用的布局是系统的 其只接受Text 不接受Button 但是发现可以在AlertDialog 上面注册按键监听 即AlertDialog.setOnKeyListener()
不过因为该监听器只负责监听按键事件 而鼠标点击是不管的 所以请点击任意按键关闭之

 

Java代码 复制代码 收藏代码
  1. aDialog.setOnKeyListener(new OnKeyListener(){   
  2.   
  3.             @Override  
  4.             public boolean onKey(DialogInterface arg0, int arg1, KeyEvent arg2) {   
  5.                 // TODO Auto-generated method stub   
  6.                 aDialog.dismiss();   
  7.                    
  8.                 return true;   
  9.             }   
  10.                
  11.         });  
aDialog.setOnKeyListener(new OnKeyListener(){

			@Override
			public boolean onKey(DialogInterface arg0, int arg1, KeyEvent arg2) {
				// TODO Auto-generated method stub
				aDialog.dismiss();
				
				return true;
			}
        	
        });

 

 

 * emulator 运行截图:

 

 

 

 

5. 以上所采用的都是AlertDialog 系统默认的布局 现在说自定义布局的情况 并添加一个用于取消AlertDialog 的 Button

 

* 定义其布局 hello.main

Xml代码 复制代码 收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="horizontal"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     android:padding="10dp"  
  7.     >  
  8. <ImageView     
  9.     android:id="@+id/image"  
  10.     android:layout_width="wrap_content"    
  11.     android:layout_height="wrap_content"    
  12.     android:src="@drawable/robot" />  
  13. <LinearLayout    
  14.     android:orientation="vertical"  
  15.     android:layout_width="wrap_content"  
  16.     android:layout_height="wrap_content"  
  17.     >  
  18. <TextView     
  19.     android:id="@+id/title"  
  20.     android:layout_width="wrap_content"    
  21.     android:layout_height="wrap_content"    
  22.     android:text="HelloAlert!"  
  23.     />  
  24. <TextView     
  25.     android:id="@+id/message"  
  26.     android:layout_width="wrap_content"    
  27.     android:layout_height="wrap_content"    
  28.     android:paddingTop="10dip"  
  29.     />  
  30.  </LinearLayout>  
  31. </LinearLayout>  
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dp"
    >
<ImageView  
	android:id="@+id/image"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/robot" />
<LinearLayout 
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
<TextView  
	android:id="@+id/title"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="HelloAlert!"
    />
<TextView  
	android:id="@+id/message"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:paddingTop="10dip"
    />
 </LinearLayout>
</LinearLayout>

 

 

* 通过LayoutInflater 得到上面 hello.xml 布局的 View view

Java代码 复制代码 收藏代码
  1. view = this.getLayoutInflater().inflate(R.layout.hello, null);  
view = this.getLayoutInflater().inflate(R.layout.hello, null);

 

* 指定AlertDialog.Builder 所需的布局 并返回目标AlertDialog

Java代码 复制代码 收藏代码
  1. ab.setView(view);   
  2.   
  3. aDialog = ab.create();  
ab.setView(view);

aDialog = ab.create();

 

* 通过 view.findViewById() 得到 目标View 然后设置其内容 如:

Java代码 复制代码 收藏代码
  1. TextView title = (TextView) view.findViewById(R.id.title);   
  2.         title.setTextSize(20);   
  3.         title.setTextColor(Color.RED);   
  4.         title.setText("HelloAlert");   
  5.            
  6.         TextView message = (TextView) view.findViewById(R.id.message);   
  7.         message.setText("Warning: it's Alert Demo!");  
TextView title = (TextView) view.findViewById(R.id.title);
        title.setTextSize(20);
        title.setTextColor(Color.RED);
        title.setText("HelloAlert");
        
        TextView message = (TextView) view.findViewById(R.id.message);
        message.setText("Warning: it's Alert Demo!");

 

 

* 弹出 AlertDialog

Java代码 复制代码 收藏代码
  1. findViewById(R.id.button).setOnClickListener(new OnClickListener(){   
  2.             public void onClick(View v) {   
  3.                 // TODO Auto-generated method stub   
  4.                 aDialog.show();   
  5.             }   
  6.         });  
findViewById(R.id.button).setOnClickListener(new OnClickListener(){
			public void onClick(View v) {
				// TODO Auto-generated method stub
				aDialog.show();
			}
        });

 

* 取消 AlertDialog

写道
在整个View 上注册按键监听器 关闭AlertDialog

 

Java代码 复制代码 收藏代码
  1. view.setOnClickListener(new OnClickListener(){   
  2.             public void onClick(View v) {   
  3.                 // TODO Auto-generated method stub   
  4.                 aDialog.dismiss();   
  5.             }   
  6.         });  
view.setOnClickListener(new OnClickListener(){
			public void onClick(View v) {
				// TODO Auto-generated method stub
				aDialog.dismiss();
			}
        });

 

 * emulator 运行截图:

 

分享到:
评论

相关推荐

    Android AlertDialog扩展

    Android AlertDialog扩展 支持反选 点击按钮不关闭扩展

    打造Android通用的自定义AlertDialog提示框使用示例

    2. **使用Builder模式**: 创建一个自定义的`AlertDialog.Builder`类,扩展系统的`AlertDialog.Builder`,并添加自定义方法。 ```java public class CustomAlertDialogBuilder extends AlertDialog.Builder { ...

    Android之AlertDialog源码.

    本文将深入探讨`AlertDialog`的源码,理解其内部工作原理以及如何自定义和使用。 首先,`AlertDialog`是`Dialog`类的一个子类,它通过`AlertDialog.Builder`来创建实例。`Builder`类提供了丰富的接口用于设置对话框...

    自定义alertDialog

    2. **使用LayoutInflater**:在代码中,通过`LayoutInflater`加载自定义布局,并将其设置为`AlertDialog`的内容视图。`LayoutInflater`可以从XML文件中创建View对象,如下所示: ```java LayoutInflater inflater =...

    Android alertDialog对话框.zip源码资源下载

    开发者可以研究源码来学习如何更有效地使用和扩展`AlertDialog`功能。 7. **实际应用** 在Android应用中,`AlertDialog`常用于: - 用户确认操作(例如,删除文件或退出应用)。 - 显示警告信息(如网络错误或...

    alertDialog源码大全

    同时,也可以参考这些实现,学习如何灵活地定制和扩展`AlertDialog`,提升自己的Android开发技能。 在使用过程中,要注意确保对话框的使用符合用户界面设计的最佳实践,如避免滥用,确保信息清晰,以及提供一致的...

    封装AlertDialog.Builder方法工程

    这个工程文件`AlertDialogBuilder`很可能包含了上述功能的扩展和封装,可能包括自定义主题、自定义布局、多按钮处理等。它可能会提供一些方便的方法,例如: - `showSimpleAlert(String title, String message)`:...

    Android中实现Iphone样式的AlertDialog.rar

    2. **使用AlertDialog.Builder** Android的`AlertDialog.Builder`类是创建对话框的基础。首先,需要实例化一个Builder对象,然后通过调用`setCustomTitle()`, `setMessage()`, `setPositiveButton()`和`...

    Android AlertDialog 详解.docx

    而进度对话框则专门用于显示进度条或进度环,通常在后台任务执行时使用,它是AlertDialog的扩展形式,同样支持添加按钮。 显示AlertDialog有特定的步骤。首先,你需要在Activity的`onCreateDialog(int)`回调中创建...

    过期API_AlertDialog

    `AlertDialog`是基于`Dialog`类的,它扩展了对话框的功能并提供了特定的布局和交互方式。通过查看源码,开发者可以学习如何自定义对话框的样式、按钮行为以及响应事件。 工具在解决过期API问题上也起着重要作用。...

    androdi AlertDialog实现各种类型的对话框

    下面我们将详细探讨如何在Android中使用`AlertDialog`实现各种类型的对话框。 首先,我们需要了解`AlertDialog`的基本构建步骤。通常,我们通过以下三个主要步骤来创建一个`AlertDialog`: 1. **创建Alert对话框...

    Android应用源码之alertDialog-IT计算机-毕业设计.zip

    本项目是一个关于Android应用源码的示例,主要关注AlertDialog的使用。 首先,Android的AlertDialog是一个系统级别的对话框,它可以显示简单的警告、询问用户问题或提供多个选择项。它通常包含一个标题、一个消息...

    自定义AlertDialog_android_v1.0.01

    具体来说,更新允许开发者传入自定义的View资源来构建对话框的内容和外观,这极大地扩展了`AlertDialog`的可塑性。 自定义`AlertDialog`的过程主要包括以下几个步骤: 1. **创建布局资源**:首先,你需要在项目的`...

    Android AlertDialog 详解.pdf

    由于它是`AlertDialog`的扩展,所以也支持添加按钮,增强了用户体验。 `DatePickerDialog`和`TimePickerDialog`则专门用于让用户选择日期和时间,它们提供了简洁的用户界面,方便用户进行日期和时间的选取。 创建...

    安卓Andriod源码——中实现Iphone样式的AlertDialog.zip

    - 使用`AlertDialog.Builder`类实例化一个Builder对象,然后通过`setCustomTitle()`, `setMessage()`, `setPositiveButton()`, `setNegativeButton()`等方法设置自定义布局和按钮。 - 使用`setView()`方法加载之前...

    安卓开发-Android中实现Iphone样式的AlertDialog.zip.zip

    2. **使用AlertDialog.Builder** - 要构建自定义对话框,首先需要实例化一个AlertDialog.Builder对象。通过这个Builder,我们可以设置对话框的各种属性,如标题、消息文本、按钮文字等。 3. **设置对话框内容** -...

    安卓Dialog对话框相关-Android中实现Iphone样式的AlertDialog.zip

    在阅读源码时,注意查看自定义布局文件(可能以`.xml`扩展名存在)和与之交互的Java类。 由于你提到部分代码可能不可用或需要调试,这表明可能存在兼容性问题或者特定设备上的显示异常。在实际应用中,开发者需要...

    alertdialogdemo.rar

    在Android开发中,自定义对话框(AlertDialog)是常见的需求,它可以为用户提供更符合应用风格的交互体验。"alertdialogdemo.rar"这个压缩包提供的...这不仅增强了用户体验,也体现了Android开发中的灵活性和可扩展性。

    HerilyAlertDialog完全自定义的Dialog源码

    7. **可扩展性**: `HerilyAlertDialog`的设计使其具有很高的可扩展性。开发者可以基于现有的源码进行二次开发,添加新的功能或者优化性能,以满足更复杂的需求。 8. **使用示例**: 在`mcustom-HerilyAlertDialog-...

    安卓实现Iphone样式的AlertDialog

    首先,要创建一个自定义的`AlertDialog`,我们需要扩展`AlertDialog.Builder`类或使用`DialogFragment`。`Builder`类允许我们构建对话框,而`DialogFragment`则提供了更多的灵活性,特别是当涉及到生命周期管理和...

Global site tag (gtag.js) - Google Analytics