android – 共享时“FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET”的目的是什么?

android – 共享时“FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET”的目的是什么?,第1张

概述我已阅读, http://developer.android.com/guide/components/tasks-and-back-stack.html并且我查找了FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET的文档,但我仍然不明白为什么Google的员工决定将其包含在他们关于共享的博客文章中. http://android-developers.blogspot.com 我已阅读,http://developer.android.com/guide/components/tasks-and-back-stack.html并且我查找了FLAG_ACTIVITY_CLEAR_WHEN_TASK_reset的文档,但我仍然不明白为什么Google的员工决定将其包含在他们关于共享的博客文章中.

http://android-developers.blogspot.com/2012/02/share-with-intents.html

这是他们的代码片段:

Intent intent=new Intent(androID.content.Intent.ACTION_SEND);intent.setType("text/plain");intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_reset);// Add data to the intent,the receiving app will decIDe what to do with it.intent.putExtra(Intent.EXTRA_SUBJECT,“Some Subject line”);intent.putExtra(Intent.EXTRA_TEXT,“Body of the message,woot!”);

文件说:

If set,this marks a point in the task's activity stack that should be cleared when the task is reset...

我仍然不确定这面旗帜.我不确定我是否可以考虑将其包含在我的share()方法中,但如果Google在博客文章中使用它,那么我确信他们知道这种情况会发挥作用.提前致谢.

解决方法 本文在第一个代码示例中解释了它:

This flag clears the called app from the activity stack,so users
arrive in the expected place next time this application is restarted.

如果你遗漏了国旗,当你回到你的应用程序时(从主屏幕,从最近等),你会看到共享目标的活动(消息/邮件/ IM应用程序),而不是你的.尝试一下,你会看到差异.

总结

以上是内存溢出为你收集整理的android – 共享时“FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET”的目的是什么?全部内容,希望文章能够帮你解决android – 共享时“FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET”的目的是什么?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1133723.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存