Android 点击AlertDialog上的确定和取消按钮,使对话框不消失方法

Posted 小zhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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上的确定和取消按钮,使对话框不消失方法的主要内容,如果未能解决你的问题,请参考以下文章

Android中的AlertDialog使用示例三(单向选择确定对话框)

Android中的AlertDialog使用示例四(多项选择确定对话框)

点击对话框上的Button不关闭对话框

android 弹出的对话框在点击确定后消失

AlertDialog.Builder#show 上的“android.view.WindowManager$BadTokenException”即使有保护措施

Android在ListView点击事件中关闭AlertDialog