嗨,我有這樣的代碼,但不工作:共享文件音頻目的的Android
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("audio/*");
sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM,
Uri.fromFile(new File("http://mp3light.net/assets/songs/393000-393999/393375-see-you-again-feat-charlie-puth--1428288074.mp3")));
startActivity(Intent.createChooser(sharingIntent,"Share using"));
我想和大家分享通過意向文件格式的音頻,通過從MP3下載文件
請解釋您的具體問題,並嘗試清理您的文章一點點。 – Knossos
'http:// ...'不涉及本地路徑,因此不能使用'File',更不用說'Uri.fromFile()'。 – CommonsWare