如何通过setOnEditorActionListener解除android警报对话框?

问题描述 投票:0回答:3

有一个警告对话框,其中包含密码EditText,我正在尝试执行与按下键盘RETURN按钮后按下正按钮相同的操作。

在我的MainActivity中:

fun enterPwd() {
    val builder = android.app.AlertDialog.Builder(this)
    val password = EditText(this)

    // some layout attributes about password are omitted

    password.imeOptions = EditorInfo.IME_ACTION_GO
    password.setOnEditorActionListener({
        if(id == EditorInfo.IME_ACTION_GO) { v, id, event ->
            doSomthingFunction()
        }
        false
    }) 
    builder.setView(password).setMessage("message")
                .setPositiveButton("confirm", { doSomethingFunction() })
                .setNegativeButton("cancel", { dialog, i -> }).show()
}

在后者的setPositiveButton中的doSomethingFunction()中,构建器会在按下按钮后自动关闭。但是在前一个中,对话框仍然存在。我试图通过dialog = builder.show(),然后在dialog.dismiss() doSomethingFunction()之后被setOnEditorActionListener解雇(附后如下),但它没有效果。按下返回键后如何关闭此对话框?

val dialog = builder.show()
password.setOnEditorActionListener({
    if(id == EditorInfo.IME_ACTION_GO) { v, id, event ->
        doSomthingFunction()
        dialog.dismiss()
    }
    false
}) 
android alertdialog kotlin
3个回答
2
投票

尝试将setPositiveButton()放在doSomethingFunction()的位置


1
投票

拉姆的评论激发了我的灵感。因为我已经在单击正面按钮时定义了动作,所以我只是在声明中从构建器获取对话框,然后只需在正面按钮上调用performClick(),一切正常。

那是:

val dialog = builder.setView(password).setMessage("message")
            .setPositiveButton("confirm", { doSomethingFunction() })
            .setNegativeButton("cancel", { dialog, i -> }).show()

password.setOnEditorActionListener({
    if(id == EditorInfo.IME_ACTION_GO) { v, id, event ->
        dialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick()        
    }
    false
}) 

0
投票

嗨,请在调用doSomthingFunction()后解除对话框。

© www.soinside.com 2019 - 2024. All rights reserved.