How to play videos in android? [closed]
How can I play videos in android application, when the videos are placed in res/raw folder?
Use MediaPlayer and yes you will play from your res/raw folder
MediaPlayer mp = MediaPlayer.create(context, R.raw.sound_file_1);
mp.start();
Audio and Video Playback
精彩评论