2016-01-21 103 views

回答

0
got the solution. 
it occurs because of I am playing audio file without making any click or not doing any action in webview. to overcome this need to set below property to webview 

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) 
{ 
    mWebView.getSettings().setMediaPlaybackRequiresUserGesture(false); 
}