gpt4 book ai didi

java - Android: 包 android.support.v7.app.AlertDialog 不存在

转载 作者:行者123 更新时间:2023-12-05 00:04:43 61 4
gpt4 key购买 nike

所以我正在尝试实现条码扫描器功能我有这段代码

 private void showMessageOKCancel(String message, DialogInterface.OnClickListener okListener) {
new android.support.v7.app.AlertDialog.Builder(addquantityactivity.this)
.setMessage(message)
.setPositiveButton("OK", okListener)
.setNegativeButton("Cancel", null)
.create()
.show();
}

我得到这个错误error: package android.support.v7.app.AlertDialog does not exist new android.support.v7.app.AlertDialog.Builder(addquantityactivity.this)

提一下,我使用 androidx 并且我尝试了以下导入..Stackoverflow 上的其他解决方案也没有帮助我。

import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;

最佳答案

试试这段代码。我希望这会奏效。如果未导入 AlertDialog,则重新导入 androidx 版本。

private void showMessageOKCancel(String message, DialogInterface.OnClickListener okListener) {
new AlertDialog.Builder(addquantityactivity.this)
.setMessage(message)
.setPositiveButton("OK", okListener)
.setNegativeButton("Cancel", null)
.create()
.show();
}

关于java - Android: 包 android.support.v7.app.AlertDialog 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62624322/

61 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com