gpt4 book ai didi

java - 在 android 的共享首选项中禁用对话框通知

转载 作者:行者123 更新时间:2023-11-30 11:45:54 27 4
gpt4 key购买 nike

我在我的应用程序中有共享首选项,它有铃声 ..

我想禁用通知短信和彩信以及来自应用程序的通知,例如警报通知

 <?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:title="Disable Notification"
android:defaultValue="true"
android:key="checkbox"
android:summary="Check the Box"/>

</PreferenceScreen>

这是我的对话通知代码之一:

    //Alert Code
final AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Reset...");
alertDialog.setMessage("Are you sure?");

Alert.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub

alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// here you can add functions
}
});

alertDialog.setIcon(android.R.drawable.ic_dialog_alert);
alertDialog.show();
}
});

}

我尝试运行它,但是当我尝试使用警报通知时它不起作用

最佳答案

SharedPreferences sharedPreferences = this.getPreferences(MODE_PRIVATE);
boolean hideNotification = sharedPreferences.getBoolean("checkbox", false);

if(!hideNotification)
alertDialog.show();

关于java - 在 android 的共享首选项中禁用对话框通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10110926/

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