【问题标题】:Share both image and text using share intent使用共享意图共享图像和文本
【发布时间】:2014-09-03 06:53:37
【问题描述】:

嗨,我想一起分享图片和文字,我使用了以下代码,但它只是分享图片,文字没有被分享,

private void shareIntent(){
    String imagePath = Environment.getExternalStorageDirectory()
            + "/logo.jpg";
    Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);    
    sharingIntent.setType("*/*");    
    sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "www.google.co.in");
    sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.fromFile(new File(imagePath)));
    startActivity(Intent.createChooser(sharingIntent, "Share Image!"));
}

如何同时分享文字和图片?请帮忙。

【问题讨论】:

  • 你试过ACTION_SEND_MULTIPLE

标签: android android-intent share


【解决方案1】:
private void shareIntent(){
    String imagePath = Environment.getExternalStorageDirectory()
            + "/logo.jpg";
    Intent sharingIntent = new Intent(Intent.ACTION_SEND);    
    sharingIntent.setType("*/*");    
    sharingIntent.putExtra(Intent.EXTRA_TEXT, "www.google.co.in");
sharingIntent.putExtra(Intent.EXTRA_TITLE, "www.google.co.in");
    sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(imagePath)));
    startActivity(Intent.createChooser(sharingIntent, "Share Image!"));
}

【讨论】:

  • sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "www.google.co.in");
  • 不工作,对于whatsApp它只分享图片,不分享文字
  • WhatsApp 不与图片分享文字
  • 如果我想这样做就没有办法吗?
【解决方案2】:
private void initShareIntent(String _text)
{
    File filePath = getFileStreamPath("shareimage.jpg");  //optional //internal storage
    Intent shareIntent = new Intent();
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.putExtra(Intent.EXTRA_TEXT, _text);
    shareIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(new File(filePath.toString()))); 
    //optional//use this when you want to send an image
    shareIntent.setType("image/jpeg");
    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    startActivity(Intent.createChooser(shareIntent, "send"));
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-04-03
    • 1970-01-01
    • 1970-01-01
    • 2012-02-04
    • 2015-09-08
    • 1970-01-01
    相关资源
    最近更新 更多