0

サーバーからファイルをダウンロードし、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);
4

1 に答える 1

2

「タイプ」の設定が間違っています。次のコードを使用します。

Intent i = new Intent(Intent.ACTION_VIEW);                      
i.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "tarsnak.3gp")),"video/*");
startActivity(i); 
于 2012-12-16T18:44:13.223 に答える