私のアプリからの曲を共有したい。私はGmailでか、それは解決できない空のファイルと残念にリソースを添付することができないエラーを示しxenderしかし、私はアプリいただきました!で曲を共有することができ、このコードに私は歌を共有したいが、それはエラーを表示する
//here collections.get(a).getpath() contains pathof file
Uri uri = Uri.parse(collections.get(a).getpath());
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("audio/mp3");
share.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(share, "Share Sound File"));
を試してみました。
私はまた、誰もが、それはコードの下に使用してくださいあなたの
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("audio/*");
share.putExtra(Intent.EXTRA_STREAM,Uri.parse("file:///"+collections.get(a).getpath()));
startActivity(Intent.createChooser(share, "Share Sound File"));
あなたのコードをデバッグしましたか? –
uri ie collection.get(a).getpath() –
logcatを投稿する –