Skip to content Skip to sidebar Skip to footer

Appview.addjavascriptinterface() Does Not Work On Api 17

i am able to use java function from my phonegap java script function and android 2.2 but same code is not run on API 17. what should i have to do to call native java code on from

Solution 1:

What you have to do on API 17 is annotate your method with @JavascriptInterface:

publicclassCustomNativeAccess {
   @JavascriptInterface

and then get rid of the constructor part:

/*private WebView mAppView;
    private DroidGap mGap;
    public CustomNativeAccess(DroidGap gap, WebView view) {
        mAppView = view;
        mGap = gap;
    }
*/

Also be sure you import JavascriptInterface in your project:

import android.webkit.JavascriptInterface;

You can read about it more here: WebView Android

Edit: You will have to annotate each method with @JavascriptInterface within your class that you'd like to access from Javascript.

Solution 2:

From the Android 4.2 documentation:

Caution: If you've set your targetSdkVersion to 17 or higher, you must add the @JavascriptInterface annotation to any method that you want available your web page code (the method must also be public). If you do not provide the annotation, then the method will not accessible by your web page when running on Android 4.2 or higher.

Source: Android WebView Doc (emphasis added)

Solution 3:

I just wrote the web application with addJavascriptInterface with API 17, it works well. I don't know what happened to your code. Maybe you can try these:

make sure you add the :

WebSettingswebSettings= appView.getSettings();
webSettings.setJavaScriptEnabled(true);

Second, why do you use super.loadUrl, not appView to load the html?

objCustomNativeAccess = newCustomNativeAccess(this, appView);
appView.addJavascriptInterface(objCustomNativeAccess, "CustomNativeAccess");
appView.loadUrl("file:///android_asset/www/index.html");

Solution 4:

Solutions:

  1. Lower the android:targetSdkVersion in the manifest file to 16.
  2. Change the compilation api level to 17 in project.properties: target=android-17 and annotate the callback method with @JavascriptInterface.

Post a Comment for "Appview.addjavascriptinterface() Does Not Work On Api 17"