2013-07-04 3 views
6

Ich muss ein mp4 Video in meiner App spielen, bat ich möchte Absicht verwenden. Ist das möglich?Wie Video MP4 mit Absicht von meiner Android App spielen? Das ist möglich?

private void startTrailer(){ 

      Uri contentUri = Uri.parse("android.resource://" + pkgName + "/" +R.raw.v01_homem_ferro_3); 
    Intent intent = new Intent(Intent.ACTION_VIEW); 
    intent.setDataAndType(contentUri, "video/mp4"); 
    context.startActivity(intent); 
} 

Ausnahme: Keine Aktivität gefunden, um Absicht zu behandeln.

Antwort

0

Bitte versuchen Sie dies, hier strMyVideo ist mein filepath,

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(strMyVideo)); 
intent.setDataAndType(Uri.parse(strMyVideo), "video/mp4"); 
activity.startActivity(intent); 
Verwandte Themen