分享图片在viber和facebook中不起作用

hos*_*ini 18 android facebook android-intent viber

我使用下面的代码来共享图像但不幸的是它只适用于Line,而不适用于FacebookViber

码:

 Intent share = new Intent(android.content.Intent.ACTION_SEND);
 share.setType("image/png");
 share.putExtra(Intent.EXTRA_STREAM, Uri.parse(G.DIR_APP + "/sample_image.png"));
 startActivity(Intent.createChooser(share, "Share image"));
Run Code Online (Sandbox Code Playgroud)

chi*_*ada 2

直接分享到 Facebook 和 Viber...

Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/png");
share.setPackage("com.facebook.katana"); 
//for viber package is "com.viber.voip".
share.putExtra(Intent.EXTRA_STREAM, ImageUri);
startActivity(p_intent.createChooser(share, "Share With"));
Run Code Online (Sandbox Code Playgroud)