android 怎么使对话框(AlertDialog.Builder)自动消失
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 怎么使对话框(AlertDialog.Builder)自动消失相关的知识,希望对你有一定的参考价值。
AlertDialog.Builder 怎么设置过会就自动消失了
参考技术A 新建一个AlertDialog,并用Builder方法形成了一个对象链,通过一系列的设置方法,构造出我们需要的对话框,然 后调用show方法显示出来,注意到Builder方法的参数 self这个其实是Activity对象的引用,根据你所处的上下文来传入相应的引用就可以了。例如在onCreate方法中调用,只需传入this即 可。 参考技术B 从控制面板→用户账户→更改用户登录或注销方式→在使用欢迎屏幕前打√ 参考技术C 自定义一个定时器:
public static class TimeCount extends CountDownTimer
public TimeCount(long millisInFuture, long countDownInterval)
super(millisInFuture, countDownInterval);
@Override
public void onFinish()
// TODO Auto-generated method stub
alertDialog.dismiss();//alertDialog是你的对话框
然后在你自己的程序中AlertDialog部分中添加:
TimeCount timer = new TimeCount(7000, 1000);//具体时间自定
timer.start(); 参考技术D public class MyDialog extends Dialog
private int FLAG_DISMISS = 1;
private boolean flag = true;
public MyDialog(Context context)
super(context);
setTitle("自动消失对话框测试!");
@Override
public void show()
super.show();
mThread.start();
@Override
public void dismiss()
super.dismiss();
flag = false;
private Thread mThread = new Thread()
@Override
public void run()
super.run();
while(flag)
try
Thread.sleep(2000);
Message msg = mHandler.obtainMessage();
msg.what = FLAG_DISMISS;
mHandler.sendMessage(msg);
catch (InterruptedException e)
e.printStackTrace();
;
private Handler mHandler = new Handler()
@Override
public void handleMessage(Message msg)
super.handleMessage(msg);
if(msg.what == FLAG_DISMISS)
dismiss();
;
LZ 筒子,AlertDialog都被框死用来做警告用的,不好操作。想实现自己的对话框还是继承Dialog然后DIY更好,选择也多得多了。我这个自定义的Dialog就是显示了2s然后消失的,测试过没问题。实现起来也相当之简单,抛砖引玉,期待更好的方法。
Android 点击AlertDialog上的确定和取消按钮,使对话框不消失方法
Android中的AlertDialog弹出框在被点击时, 无论点击哪个按钮都会关闭窗口。但是有时候我们不需要它关闭,例如输入用户名和密码,输错了,提示重新输入。那么怎么做到点击确定或者取消按钮不关闭对话框呢?
java代码如下:
//包含EditText的AlertDialog
AlertDialog.Builder alertDialog = new AlertDialog.Builder(MainActivity.this);
View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.dialog_normal_layout,null);
EditText et_imei = view.findViewById(R.id.et_imei);
alertDialog.setTitle("请输入IMEI").setView(view).setNeutralButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
canCloseDialog(dialogInterface, false);//不关闭对话框
}
}).setPositiveButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
canCloseDialog(dialogInterface, true);//关闭对话框
}
}).create();
alertDialog.show();
// 关键部分在这里
private void canCloseDialog(DialogInterface dialogInterface, boolean close) {
try {
Field field = dialogInterface.getClass().getSuperclass().getDeclaredField("mShowing");
field.setAccessible(true);
field.set(dialogInterface, close);
} catch (Exception e) {
e.printStackTrace();
}
}
xml布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="15dp" >
<EditText
android:id="@+id/et_imei"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入IMEI"
android:maxLength="15"
android:inputType="number"
android:maxLines="1"/>
</LinearLayout>
以上是关于android 怎么使对话框(AlertDialog.Builder)自动消失的主要内容,如果未能解决你的问题,请参考以下文章