在
Android应用程序中,我有一个按钮,我想要具有打开应用程序通知设置的功能(在Android设置中).
我可以用这个打开Android设置
startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS),0);
但我想直接在我的应用通知设置上打开
替代
解决方法
没有公共API可以让您直接深入链接到应用程序的通知设置.
您可以使用Settings.ACTION_APPLICATION_DETAILS_SETTINGS
深度链接到应用程序的设置,但这不会直接进入通知屏幕.
Any way to link to the Android notification settings for my app?有一个可行的解决方案,但由于它不是官方API的一部分,因此无法保证在所有设备或未来版本的Android上运行.
if there is a way to turn the “Block notificaations” on and off programatically that would be ok too