我使用loadUrl函数调用webview中的JavaScript函数:
webview.loadUrl("javascript:(function(){
if (window.find) {
if(window.getSelection){
window.document.designMode = 'on';
window.document.execCommand('hiliteColor',false,'yellow');
window.document.designMode = 'off';
}}})()");
这适用于heightlight选中的文字 在将html文件加载到我的webview期间它与我合作但是在尝试查看xhtml文件到webview时它不起作用我该如何处理这个?