我编写了一个带有共享图标的程序,它应该共享显示图像中的图像。
当我尝试与社交媒体共享图像时,它给了我空白空间,并且没有共享我的图像。
public void shareButton(){
String text = "Look at my awesome picture";
Uri pictureUri = Uri.parse("Android/data/com.example.shareImage/file/Images/index.jpg");
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, pictureUri);
shareIntent.putExtra(Intent.EXTRA_TEXT, text);
shareIntent.setType("image/*");
startActivity(Intent.createChooser(shareIntent,"Share via"));
//
}