我有一个Web视图,其中我想插入一些文本(如自动填充功能)。有什么办法吗?我尝试使用java脚本。
document.execCommand('insertHTML', false,text );
但它没有用。
答案 0 :(得分:1)
你需要使用android提供的javascript接口机制。
WebView webView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
webview.loadUrl("javascript://your_javascrpit_method");