I am facing an issue with Android 13. I have a button and click on that button I want to open the App Notification Setting and can Turn the ON/OFF notification there. It works fine below Android 13 but for Android 13 If I Turn OFF the notification and come back to my Android Application screen it gives a white screen and some of the UI elements disappear (Mainly those are API resposne based). Please help
Intent intent = new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS)
.putExtra(Settings.EXTRA_APP_PACKAGE, activity.packageName)
startActivity(intent);
Thanks in Advance!