使用Instagram共享时“无法找到图像”

问题描述 投票:-1回答:2

在我的应用程序中,用户可以选择在Instagram上共享图像。这是我正在使用的代码:

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
        shareIntent.setType("image/*");

        final ContentResolver cr = getContentResolver();
        final String[] p1 = new String[]{MediaStore.Images.ImageColumns._ID, MediaStore.Images.ImageColumns.TITLE, MediaStore.Images.ImageColumns.DATE_TAKEN};
        Cursor c1 = cr.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, p1, null, null, p1[1] + " DESC");


        shareIntent.putExtra(Intent.EXTRA_STREAM, photoUri);
        shareIntent.setPackage("com.instagram.android");

        c1.close();
        startActivity(shareIntent);

问题是它在应用程序上显示一条消息说

无法加载图片。

我在manifest.xml中添加了此权限

  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

我也确保从我的设备给予许可,但没有任何工作。

android android-intent instagram
2个回答
0
投票

试试这段代码

String type = "image/*";
String filename = "/myPhoto.jpg";
String mediaPath = Environment.getExternalStorageDirectory() + filename;

createInstagramIntent(type, mediaPath);

private void createInstagramIntent(String type, String mediaPath){

    // Create the new Intent using the 'Send' action.
    Intent share = new Intent(Intent.ACTION_SEND);

    // Set the MIME type
    share.setType(type);

    // Create the URI from the media
    File media = new File(mediaPath);
    Uri uri = Uri.fromFile(media);

    // Add the URI to the Intent.
    share.putExtra(Intent.EXTRA_STREAM, uri);

    // Broadcast the Intent.
    startActivity(Intent.createChooser(share, "Share to"));
}

支持的照片格式是jpeg,gif,png


0
投票

我解决了我的问题。我删除了这行代码

        Cursor c1 = cr.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, p1, null, null, p1[1] + " DESC");

我取代了这个

    shareIntent.putExtra(Intent.EXTRA_STREAM, photoUri);

有了这个

shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(MediaStore.Images.Media.insertImage(getContentResolver(), photoPath, "img", "Identified image")));
© www.soinside.com 2019 - 2024. All rights reserved.