Opening specific part of system settings from app

后端 未结 1 1254
孤独总比滥情好
孤独总比滥情好 2021-01-25 23:00

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 th

相关标签:
1条回答
  • 2021-01-25 23:43

    try setting the following flag on your intent:

    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    
    0 讨论(0)
提交回复
热议问题