I am loading html page from asset folder to android webview, the html pages has video. Other images are loaded clearly but video is not loaded i mean not plays in app. Where to place the local video file? I tested by placing video files in asset folder and raw folder, but not plays video.
webView.loadUrl("file:///android_asset/index.html"); // load html file
video.src="file:///android_res/raw/test.mp4"; // load video file from raw folder
and
video.src="file:///android_asset/test.mp4"; // load video file from assets folder
Please help me, thanks in advance.