【发布时间】:2014-04-10 23:32:49
【问题描述】:
我的音板中有很多项目,我需要分享它们。我已经尝试过这个
private void shareImage(int resId) {
Intent share = new Intent(Intent.ACTION_SEND);
// If you want to share a png image only, you can do:
// setType("image/png"); OR for jpeg: setType("image/jpeg");
share.setType("audio/mp3");
// Make sure you put example png image named myImage.png in your
// directory
String imagePath = "android.resource://com.example.app/" + resId;
File imageFileToShare = new File(imagePath);
Uri uri = Uri.fromFile(imageFileToShare);
share.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(share, "Share Image!"));
}
但没有成功!谢谢
【问题讨论】:
-
您的实际问题是什么?提供更多信息
-
当我尝试分享声音时,例如与 WhatsApp,它说这是不可能的!
标签: android listview mp3 share