【发布时间】:2016-11-08 16:04:34
【问题描述】:
我正在使用带有 ACTION_VIEW 的意图在 android 上查看照片,但在查看其他图片(特别是共享)时,它不会以画廊的任何选项打开。有谁知道如何让它有这些选项?
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(location, mimeType);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
这些问题相似,但没有答案
Intent Action_View for image opens gallery with no delete option
Android image intent : sharing/editing options
有趣的是,这两个问题都在谈论这些选项已经可用......所以我不确定我做错了什么。
【问题讨论】:
标签: android android-intent photo-gallery