在我的应用程序中,我可以选择从GridView
. Currently, when the Share menu is selected, I prepare a shareIntent
that contains Uris for all of the selected images and then call the Intent.createChooser()
.
我想使用ShareActionProvider,但为了让 Share 菜单项可点击,当由ShareActionProvider备份时,shareIntent
必须指定。
onCreateOptionsMenu()
如果我不知道将选择哪些图像,如何在里面指定 shareIntent ?我希望在onOptionsItemSelected()
函数内准备 shareIntent 。
作为旁注,我是从片段而不是从活动中执行此操作的,这有什么不同吗?
谢谢你,
加里