我有一个应用程序。我想在我的应用程序中分享相机拍摄的照片。因此,当我拍摄一个相机并单击分享按钮时,我的应用程序也会显示在可以共享图像的应用程序列表中。我这样做是通过将此意图过滤器添加到清单文件中的:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
但是当我打开这个活动时,我需要在一个imageview中用相机拍摄的照片。我怎样才能做到这一点 ?不知道,请分享!!!!感谢