I can play a video from the Internet by inserting the URL like below:
mPath = Uri.parse("http://commonsware.com/misc/test2.3gp");
mVid.setVideoURI(mPath);
mVid.requestFocus();
mVid.start();
But now I have a video in my raw folder so the path is res/raw/testing.3gp. The code below doesn't work, and I've tried some other ways too to no avail.
mPath = Uri.parse("../../res/raw/testing.3gp");
Any suggestions?