android 中 webChromeClient.class 中的源代码。
/**
* Tell the client that the selection has been copied or canceled.
* @hide
*/
public void onSelectionDone(WebView view) {
}
有没有办法在我的项目中覆盖该方法?喜欢
WebChromeClient mWebChromeClient = new WebChromeClient()
{
@Override
public void onSelectionDone(WebView view)
{
}
}
谢谢。