I am new to android. I am facing two problems right now 1. I parsed xml file and showed it in webview which contains videos and text . When i click on videos
You need to
set a WebChromeClient to your WebView
web.setWebChromeClient(new WebChromeClient());
and turn on hardwareAccelerated value
check out http://developer.android.com/reference/android/webkit/WebView.html and read HTML5 Video support part.
This works for me...