Hi ,
I have Android LisView that was contain TextView to display the data in the list,
I add to change it to Webview, after doing that everything look good except the setOnClickListener that not responding anymore..
I have read about the Webview and found that setOnClickListener is not supported, instead setOnTouchListener is supported is there
a way to use the same functionality as setOnClickListener in Android WebView ?
Like this:
myWebView.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
//do it ..
}
});
Thanks (: