我有一个加载HTMLEditor文本的webview。我不希望它是可编辑的。有人可以帮忙吗?
感谢。
答案 0 :(得分:2)
HTMLEditor htmlEd=new HTMLEditor();
String st=htmlEd.getHtmlText();
WebView browser=new WebView();
WebEngine webEngine=browser.getEngine();
if(st.contains("contenteditable=\"true\"")){
st=st.replace("contenteditable=\"true\"", "contenteditable=\"false\"");
}
webEngine.loadContent(st);
我以这种方式解决了我的问题。