我有一个应用程序,我可以从中启动手机上安装的其他应用程序,通过长按我得到应用程序选择器,结果我收到一个意图数据,我如何保存它以便用户在关闭时返回我的应用程序有相同的快捷方式设置吗?
我保存其他类似的东西
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putInt("Counter1", counter);
editor.putBoolean("FirstRun", firstRun);
editor.putString("Label2", label2S);
editor.commit();
但我不能这样做