1 AlertDialog builder=new AlertDialog.Builder(context).setTitle("注意:") 2 .setIcon(R.drawable.dailog_icon) 3 .setMessa...
分类:
移动开发 时间:
2014-07-07 19:46:09
阅读次数:
288
import android.app.Activity;import android.app.AlertDialog;import android.app.Dialog;import android.content.DialogInterface;import android.os.Bundle;i...
分类:
其他好文 时间:
2014-07-07 15:18:20
阅读次数:
237
new AlertDialog.Builder(AlertActivity.this).setTitle("重要") .setMessage("这是对话框").setPositiveButton("确定", new DialogInterface.OnClickListener() { ...
分类:
其他好文 时间:
2014-06-30 21:52:10
阅读次数:
193
//回答问题 protected void dialog2(){ AlertDialog.Builder builder = new AlertDialog.Builder(mQiandaoAct.this); builder.setIcon(R.drawable.ic_launch...
分类:
其他好文 时间:
2014-06-28 19:08:08
阅读次数:
176
Android的对话框有两种:PopupWindow和AlertDialog。它们的不同点在于:AlertDialog的位置固定,而PopupWindow的位置可以随意AlertDialog是非阻塞线程的,而PopupWindow是阻塞线程的PopupWindow的位置按照有无偏移分,可以分为偏移和...
分类:
移动开发 时间:
2014-06-28 11:51:30
阅读次数:
219
之前自定义了一个AlertDialog对话框,第一次点击时正常,但第二次调用时会出现错误:java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
关于这个错误纠结了我...
分类:
移动开发 时间:
2014-06-28 07:28:39
阅读次数:
278
最近在做Android4.0的开发,发现AlertDialog相比较以前有了较大变化,就是在触摸对话框边缘外部,对话框消失于是研究其父类发现,可以设置这么一条属性,当然必须先AlertDialog.Builder.create()之后才能调用这两个方法方法一:setCanceledOnTouchOu...
分类:
移动开发 时间:
2014-06-24 11:03:30
阅读次数:
294
打开源码,首先映入眼帘的是三个构造方法,但这三个构造方法都是protected类型的,可见,不允许我们直接实例化AlertDialog. 因此,我们再看别的有没有方法.可以实例化再仔细一看,发现一个变量 , AlertController mAlert; 这个才是我们今天的主角,重点研究它. mAl...
分类:
移动开发 时间:
2014-06-21 18:20:14
阅读次数:
213
android中的对话框形式有四种,分别是一般对话框形式,列表对话框形式,单选按钮对话框,多选按钮对话框,下面我一一对他们进行详解。一般对话框一般对话框形式如下图:具体实现代码如下: 1 new AlertDialog.Builder(this) 2 ...
分类:
移动开发 时间:
2014-06-21 08:39:32
阅读次数:
272
转自:http://hi.baidu.com/ittdt/item/d932cf37f486f886c3cf29eanew AlertDialog.Builder(MainEngine.context)//.setTitle("提示").setMessage("确定要退出游戏吗?").setPosi...
分类:
移动开发 时间:
2014-06-21 07:08:44
阅读次数:
210