1

我正在尝试让画廊应用程序将图像共享到我的应用程序,问题是我不知道如何获取画廊发送给我的图像数据。我假设我可能在 .getData() 方法中找到了数据,但它返回 null

这是我的意图过滤器

<intent-filter>
            <action android:name="android.intent.action.SEND"/>
            <action android:name="android.intent.action.VIEW"/>
            <data android:mimeType="image/*"/>
            <category android:name="android.intent.category.default"/>
        </intent-filter>

这是我在 MainActivity 中的代码

Intent data = getIntent(); //get the intent that starts this activity, in this case: gallery intent
    if(data != null){ 
        Uri uri = data.getData();
        //set the image view: the problem is: uri is always null
        imageView.setImageURI(uri);
    }

如果方法 getData() 不是我想要的,那么我怎样才能获得要与我的应用程序共享的图像?

4

1 回答 1

0

所以,我认为我的回答有点晚了,但无论如何,它是:

您已经在AndroidManifest.xml中正确设置了意图过滤器,如下所示:

<intent-filter>
    <action android:name="android.intent.action.SEND" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="image/*" />
</intent-filter>

本网站所述,您可以使用以下命令获取 URI:

Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);

//set content of ImageView to the specific Uri
imageView.setImageURI(imageUri);

可以在此处找到有关Intent类的文档。

于 2019-09-27T11:41:23.290 回答