助けてください、オフラインモードでRAWフォルダーからAndroidデバイスでビデオを再生する方法は?
成功例1: 以下のコードでSDカードから動画を再生できます。
Intent intent = new Intent(Intent.ACTION_VIEW);
String type = "video/mp4";
Uri uri = Uri.parse("file:///sdcard/test.mp4");
intent.setDataAndType(uri, type);
startActivity(intent);
失敗した例 2: 質問: test.mp4 を res/raw フォルダーに入れてもよろしいですか?
Intent intent = new Intent(Intent.ACTION_VIEW);
String type = "video/mp4";
Uri uri = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.taipei);
intent.setDataAndType(uri, type);
startActivity(intent);
誰でも私を助けることができますか?お願いします。