Call javascript function in Android WebView

拥有回忆 提交于 2019-12-18 13:01:11

问题


I have an activity with WebView and Button on it. Android sdk 17. Website isn't mine, so I can't change it anyway. I need to do js code by android button click.

I'm trying to do this

public class RostelecomLoginActivity extends Activity {

WebView webView;
String url;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_rostelecom_login);

    Intent webIntent = getIntent();
    final String url = webIntent.getStringExtra("url");

    webView = (WebView) findViewById(R.id.webView1);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.getSettings().setSaveFormData(true);
    webView.getSettings().setSavePassword(true);

    Button button = (Button) findViewById(R.id.button1);
        button.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            webView.addJavascriptInterface(new Object(){
                @JavascriptInterface
                public void test(){
                    Log.d("JS", "test");
                }
            },"Android");
            webView.loadUrl("javascript:(function(){document.getElementById('mA').click();})()");
        }
    });

    webView.loadUrl(url);

}}

But it doesn't do anything. How can I call my js right?


回答1:


webview.loadUrl("javascript:functionName(\"" + argument + "\")");



回答2:


Change your line with this..

myWebView.loadUrl("javascript:testEcho('Hello World!')");

try this one might be helpful to you...




回答3:


I assume that you are trying to call the test function when you click on the external website you are accessing.

The way to call the functions you have defined on the Java-side is by the name you assigned when you created the javascript interface, in your case "Android"

So the call will be "window.Android.test()"

Also you have to wait to load the website and then inject the javascript code.

Check out the answer I did some weeks ago with code Hide WebView until JavaScript is done. It's a similar approach to manage the JS and Java using a webview.

Consider start doing a simple test when the page loads, and later add it inside the javascript click function.



来源:https://stackoverflow.com/questions/17023991/call-javascript-function-in-android-webview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!