I searched every where every resource out there and I have tried almost everything, but for some reason my android device doesn't want to play the video on the application. I've tried changing the format to 3gp and mp4 and when I launch the application it just says the video cant play. The video is in my Phone I don't know if is the path that is wrong or something else!!!
Here's my code:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VideoView vid = (VideoView) findViewById(R.id.video);
vid.setVideoPath("/Phone/Movies/INSTA_Segment_0_x264.mp4");
vid.setMediaController(new MediaController(this));
vid.start();
vid.requestFocus();
}
On Main Activity
Hope this helpful