source code in webChromeClient.class in android.
/**
* Tell the client that the selection has been copied or canceled.
* @hide
*/
public void onSelectionDone(WebView view) {
}
is there any way to override that method in my project? like
WebChromeClient mWebChromeClient = new WebChromeClient()
{
@Override
public void onSelectionDone(WebView view)
{
}
}
thanks.