I just want to know the when user click on webview other then hyperlink. I On that click i want to show/hide a view of my activity that hold webview. Any suggestion?

link|improve this question

Hey Arslan, do you have an example of that you can post or link to? – user621713 Mar 15 '11 at 22:29
feedback

1 Answer

up vote 9 down vote accepted

I took a look at this and I found that a WebView doesn't seem to send click events to an OnClickListener. If anyone out there can prove me wrong or tell me why then I'd be interested to hear it.

What I did find is that a WebView will send touch events to an OnTouchListener. It does have its own onTouchEvent method but I only ever seemed to get MotionEvent.ACTION_MOVE using that method.

So given that we can get events on a registered touch event listener, the only problem that remains is how to circumvent whatever action you want to perform for a touch when the user clicks a URL.

This can be achieved with some fancy Handler footwork by sending a delayed message for the touch and then removing those touch messages if the touch was caused by the user clicking a URL.

Here's an example:

public class WebViewClicker extends Activity implements OnTouchListener, Handler.Callback {

private static final int CLICK_ON_WEBVIEW = 1;
private static final int CLICK_ON_URL = 2;

private final Handler handler = new Handler(this);

private WebView webView;
private WebViewClient client;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.web_view_clicker);

    webView = (WebView)findViewById(R.id.web);
    webView.setOnTouchListener(this);

    client = new WebViewClient(){ 
        @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { 
            handler.sendEmptyMessage(CLICK_ON_URL);
            return false;
        } 
    }; 

    webView.setWebViewClient(client);
    webView.setVerticalScrollBarEnabled(false);
    webView.loadUrl("http://www.example.com");
}

@Override
public boolean onTouch(View v, MotionEvent event) {
    if (v.getId() == R.id.web && event.getAction() == MotionEvent.ACTION_DOWN){
        handler.sendEmptyMessageDelayed(CLICK_ON_WEBVIEW, 500);
    }
    return false;
}

@Override
public boolean handleMessage(Message msg) {
    if (msg.what == CLICK_ON_URL){
        handler.removeMessages(CLICK_ON_WEBVIEW);
        return true;
    }
    if (msg.what == CLICK_ON_WEBVIEW){
        Toast.makeText(this, "WebView clicked", Toast.LENGTH_SHORT).show();
        return true;
    }
    return false;
}
}


Hope this helps.

link|improve this answer
1  
Thanks 4 ur time. But what about a javascript interface having a method attach to body by onClick... I use that it working. – Arslan Feb 27 '11 at 14:46
You are also right in a case if we have no access to HTML data of page. Or if it is loading from a web. Thanks. – Arslan Apr 4 '11 at 6:54
Is there any way to get control of webview contain? Actually i want to get the play/pause/stop/complete event of youtube video on webview. how could i achieve this? – Hiren Dabhi Oct 21 '11 at 10:30
I don't know if it makes any difference in this case, but it should be noted that shouldOverrideUrlLoading() can be called during a redirect and is not always because of a user interaction with a link. – littleFluffyKitty Mar 22 at 20:52
but the click event and touch event are two different things.When user click the webview onTouch of it does not called – deepak goel Mar 27 at 5:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.