Opening Specific Part Of System Settings From App
I have a shortcut from my app which opens the storage part of system settings, (which works perfectly), but if the settings app is already running, and was last left from say the d
Solution 1:
try setting the following flag on your intent:
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Post a Comment for "Opening Specific Part Of System Settings From App"