设置壁纸和返回默认主屏幕
选择 & 后设置壁纸 我想返回默认主屏幕(即第 2 页,共 3 页),以便用户可以立即看到新壁纸。
意图intent2 = new Intent(Intent.ACTION_MAIN); intent2.addCategory(Intent.CATEGORY_HOME); intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 启动活动(意图2);
上面的工作正常,但返回到最后使用的主页,不一定是默认主页。我可以使用额外的或标志来完成此任务吗?
After choosing & setting a wallpaper I would like to return to the DEFAULT home screen (i.e. pg 2 of 3) so the user can immediately see the new wallpaper.
Intent intent2 = new Intent(Intent.ACTION_MAIN);
intent2.addCategory(Intent.CATEGORY_HOME);
intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent2);
The above works fine, but returns to the last home page used, not necessarily the DEFAULT homepage. Is there an EXTRA or FLAG I can use to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案...使用两个意图!
Found the answer... use TWO intents!