サーバーからファイルをダウンロードし、DOWNLOAD フォルダーに保存します。
Androidのデフォルトプレーヤーからコードで再生するにはどうすればよいですか?
アクチンコードで?このコードのように
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "tarsnak.3gp")), "application/vnd.android.package-archive");
startActivity(intent);