我正在尝试使用 WebView 实现 RichTextEditor。
我使用以下代码插入图像。它运行良好。
webview.loadUrl("javascript:
(function () { document.execCommand('insertImage', 'false','"
+ selectedImagePath +"');})()");
要指定高度和宽度,我使用了以下命令,但它不起作用。
String imagSpec = " width=" + 200 + " height=" + 200 + " border= 5" ;
webview.loadUrl("javascript(function () {
document.execCommand('insertImage', 'false','"
+ selectedImagePath +imagSpec+ "');})()");
请帮助我正确地做到这一点。