- 浏览: 326929 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
crxiang:
写得很好啊,最近正好需要这个,谢谢分享了!
Android中ProgressDialog的简单示例 -
shangs2010:
分析的真仔细,多谢!
SharePreference类似于JavaEE中的session -
guochongcan:
fantaxy025025 写道兄弟,你这个不行的。
只能删 ...
MYSQL用一条SQL语句删除重复记录 -
fantaxy025025:
兄弟,你这个不行的。只能删除 重复个数是2的,如果重复个数大于 ...
MYSQL用一条SQL语句删除重复记录 -
wujiandong:
不错,多写点这方面的东西~~,加油~~,哥们~~
布局学习——妙用TabHost
AlertDialog
[功能]
也是一种Dialog
[原理]
1. AlertDialog 本身并没有构造函数 即 不可以通过 new AlertDialog(...) 来初始化 而只能通过 AlertDialog.Builder
2. 而 AlertDialog.Builder 比较像是AlertDialog的构造器 用于接收各种和 AlertDialog 有关的参数 然后通过 create() 来创建目标 AlertDialog
[代码 步骤]
1. 定义 AlertDialog.Builder 实例 并接受一些参数 如:图片 标题 正文
ab = new AlertDialog.Builder(this);
ab.setTitle("HelloAlert").setMessage("Warning: its Alert Demo!").setIcon(R.drawable.robot);
2. 根据AlertDialog.Builder 创建 相应的 AlertDialog
aDialog = ab.create();
3. 弹出 AlertDialog
- findViewById(R.id.button).setOnClickListener(new OnClickListener(){
- public void onClick(View v) {
- // TODO Auto-generated method stub
- aDialog.show();
- }
- });
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()
不过因为该监听器只负责监听按键事件 而鼠标点击是不管的 所以请点击任意按键关闭之
- aDialog.setOnKeyListener(new OnKeyListener(){
- @Override
- public boolean onKey(DialogInterface arg0, int arg1, KeyEvent arg2) {
- // TODO Auto-generated method stub
- aDialog.dismiss();
- return true;
- }
- });
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 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>
<?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
view = this.getLayoutInflater().inflate(R.layout.hello, null);
* 指定AlertDialog.Builder 所需的布局 并返回目标AlertDialog
ab.setView(view); aDialog = ab.create();
* 通过 view.findViewById() 得到 目标View 然后设置其内容 如:
- 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!");
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
- findViewById(R.id.button).setOnClickListener(new OnClickListener(){
- public void onClick(View v) {
- // TODO Auto-generated method stub
- aDialog.show();
- }
- });
findViewById(R.id.button).setOnClickListener(new OnClickListener(){ public void onClick(View v) { // TODO Auto-generated method stub aDialog.show(); } });
* 取消 AlertDialog
写道
在整个View 上注册按键监听器 关闭AlertDialog
- view.setOnClickListener(new OnClickListener(){
- public void onClick(View v) {
- // TODO Auto-generated method stub
- aDialog.dismiss();
- }
- });
view.setOnClickListener(new OnClickListener(){ public void onClick(View v) { // TODO Auto-generated method stub aDialog.dismiss(); } });
* emulator 运行截图:
发表评论
-
使用 SharedPreferences
2013-01-31 21:37 1211SharedPreferences是一种轻量级的数据存储 ... -
android:windowSoftInputMode属性详解
2012-11-01 07:36 837android:windowSoftInputMode ac ... -
自定义ListView中的分割线
2012-11-01 07:12 2295ListView中每个Item项之间都有分割线,设置andro ... -
Android中Bitmap和Drawable
2012-10-24 17:54 996一、相关概念 1、Drawable就是一个可画的对象,其可能 ... -
在EditText/TextView中插入表情图片、样式、下划线等
2012-09-23 20:03 2691EditText: 通常用于显示 ... -
Android开发:在EditText中关闭软键盘
2012-09-23 14:41 18391、EditText有焦点(focusable为true) ... -
Android 字体和颜色
2012-06-23 18:34 982对于能够显示文字的控件(如TextView EditText ... -
解决Eclipse Indigo(3.7)中文字体偏小问题
2012-06-04 20:33 1109===========转============= ... -
Android中Cursor 的一些方法
2012-05-16 17:15 1471close() //关闭游标,释放资源 copyStrin ... -
ContentProvider分析
2012-05-15 22:24 1010红色部分较重要的 private static ... -
Java的log 的几种表示颜色
2012-05-09 16:12 0Log下面的日志颜色 E Error 红 ... -
android单元测试时,异常情况解决记录
2012-04-07 20:26 1547异常内容 java.lang.NoClassDefFo ... -
Android_SDK及ADT升级方法
2012-04-05 10:57 25425本文只讲如何 ... -
android 退出程序 对话框提醒
2012-03-17 20:23 0if (keyCode == KeyEvent.KEYCO ... -
DBA应该具有什么样的素质?——转
2012-03-17 20:18 0问题起源于在写一份材 ... -
抓住移动互联网发展最佳时机,开发最好的移动应用程序,为用户提供最佳的软件服务
2012-03-04 20:03 0抓住移动互联网发展最佳时机,开发最好的移动应用程序,为用户提供 ... -
Android WebView 浏览器
2012-01-01 09:38 4199WebView的使用很方便。在学习WebView之前,我 ... -
android ImageView的scaleType属性
2011-12-27 13:07 1193ImageView:Displays an arbitra ... -
程序实现线性布局相关
2011-12-26 15:42 1050程序实现线性布局相关1、 LinearLayout l ... -
Android中Toast的用法简介
2011-12-24 21:20 1415Toast是Android中用来显示显示信息的一种机制,和Di ...
相关推荐
Android AlertDialog扩展 支持反选 点击按钮不关闭扩展
2. **使用Builder模式**: 创建一个自定义的`AlertDialog.Builder`类,扩展系统的`AlertDialog.Builder`,并添加自定义方法。 ```java public class CustomAlertDialogBuilder extends AlertDialog.Builder { ...
本文将深入探讨`AlertDialog`的源码,理解其内部工作原理以及如何自定义和使用。 首先,`AlertDialog`是`Dialog`类的一个子类,它通过`AlertDialog.Builder`来创建实例。`Builder`类提供了丰富的接口用于设置对话框...
2. **使用LayoutInflater**:在代码中,通过`LayoutInflater`加载自定义布局,并将其设置为`AlertDialog`的内容视图。`LayoutInflater`可以从XML文件中创建View对象,如下所示: ```java LayoutInflater inflater =...
开发者可以研究源码来学习如何更有效地使用和扩展`AlertDialog`功能。 7. **实际应用** 在Android应用中,`AlertDialog`常用于: - 用户确认操作(例如,删除文件或退出应用)。 - 显示警告信息(如网络错误或...
同时,也可以参考这些实现,学习如何灵活地定制和扩展`AlertDialog`,提升自己的Android开发技能。 在使用过程中,要注意确保对话框的使用符合用户界面设计的最佳实践,如避免滥用,确保信息清晰,以及提供一致的...
这个工程文件`AlertDialogBuilder`很可能包含了上述功能的扩展和封装,可能包括自定义主题、自定义布局、多按钮处理等。它可能会提供一些方便的方法,例如: - `showSimpleAlert(String title, String message)`:...
2. **使用AlertDialog.Builder** Android的`AlertDialog.Builder`类是创建对话框的基础。首先,需要实例化一个Builder对象,然后通过调用`setCustomTitle()`, `setMessage()`, `setPositiveButton()`和`...
而进度对话框则专门用于显示进度条或进度环,通常在后台任务执行时使用,它是AlertDialog的扩展形式,同样支持添加按钮。 显示AlertDialog有特定的步骤。首先,你需要在Activity的`onCreateDialog(int)`回调中创建...
`AlertDialog`是基于`Dialog`类的,它扩展了对话框的功能并提供了特定的布局和交互方式。通过查看源码,开发者可以学习如何自定义对话框的样式、按钮行为以及响应事件。 工具在解决过期API问题上也起着重要作用。...
下面我们将详细探讨如何在Android中使用`AlertDialog`实现各种类型的对话框。 首先,我们需要了解`AlertDialog`的基本构建步骤。通常,我们通过以下三个主要步骤来创建一个`AlertDialog`: 1. **创建Alert对话框...
本项目是一个关于Android应用源码的示例,主要关注AlertDialog的使用。 首先,Android的AlertDialog是一个系统级别的对话框,它可以显示简单的警告、询问用户问题或提供多个选择项。它通常包含一个标题、一个消息...
具体来说,更新允许开发者传入自定义的View资源来构建对话框的内容和外观,这极大地扩展了`AlertDialog`的可塑性。 自定义`AlertDialog`的过程主要包括以下几个步骤: 1. **创建布局资源**:首先,你需要在项目的`...
由于它是`AlertDialog`的扩展,所以也支持添加按钮,增强了用户体验。 `DatePickerDialog`和`TimePickerDialog`则专门用于让用户选择日期和时间,它们提供了简洁的用户界面,方便用户进行日期和时间的选取。 创建...
- 使用`AlertDialog.Builder`类实例化一个Builder对象,然后通过`setCustomTitle()`, `setMessage()`, `setPositiveButton()`, `setNegativeButton()`等方法设置自定义布局和按钮。 - 使用`setView()`方法加载之前...
2. **使用AlertDialog.Builder** - 要构建自定义对话框,首先需要实例化一个AlertDialog.Builder对象。通过这个Builder,我们可以设置对话框的各种属性,如标题、消息文本、按钮文字等。 3. **设置对话框内容** -...
在阅读源码时,注意查看自定义布局文件(可能以`.xml`扩展名存在)和与之交互的Java类。 由于你提到部分代码可能不可用或需要调试,这表明可能存在兼容性问题或者特定设备上的显示异常。在实际应用中,开发者需要...
在Android开发中,自定义对话框(AlertDialog)是常见的需求,它可以为用户提供更符合应用风格的交互体验。"alertdialogdemo.rar"这个压缩包提供的...这不仅增强了用户体验,也体现了Android开发中的灵活性和可扩展性。
7. **可扩展性**: `HerilyAlertDialog`的设计使其具有很高的可扩展性。开发者可以基于现有的源码进行二次开发,添加新的功能或者优化性能,以满足更复杂的需求。 8. **使用示例**: 在`mcustom-HerilyAlertDialog-...
首先,要创建一个自定义的`AlertDialog`,我们需要扩展`AlertDialog.Builder`类或使用`DialogFragment`。`Builder`类允许我们构建对话框,而`DialogFragment`则提供了更多的灵活性,特别是当涉及到生命周期管理和...