I'm using the following code to play a .mp4 video on my android device. I have 3 problems,
using this code when I press the back button on the device the sound would still continoue to play
It doesn't play the video, only plays the sound!
I don't know how to get controller for the video so the user can stop the video, go back or forth on the video.
VideoView videoHolder = new VideoView(this); videoHolder.setMediaController(new MediaController(this)); getWindow().setFormat(PixelFormat.TRANSLUCENT); MediaPlayer mediaPlayer = new MediaPlayer(); Uri myUri = Uri.parse("android.resource://" + getPackageName() + "/" + R.drawable.video); videoHolder.setVideoURI(myUri); mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC); mediaPlayer.setDataSource(getApplicationContext(), myUri); mediaPlayer.prepare(); mediaPlayer.start(); videoHolder.requestFocus(); videoHolder.start();