以编程方式将文本插入webview中的文本字段

时间:2014-03-03 13:29:55

标签: java android android-webview

我有一个Web视图,其中我想插入一些文本(如自动填充功能)。有什么办法吗?我尝试使用java脚本。

document.execCommand('insertHTML', false,text );

但它没有用。

1 个答案:

答案 0 :(得分:1)

你需要使用android提供的javascript接口机制。

WebView webView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
webview.loadUrl("javascript://your_javascrpit_method");