wv.setOnTouchListener (new View.OnTouchListener () {
public boolean onTouch(View v, MotionEvent event) { WebView.HitTestResult hr = ((WebView)v).getHitTestResult(); return false; } });
Would it not be possible to detect a click on the video play button using the html element id? In onTouchListener
How is the video displayed? instant playback or a button to start playback?
source share