I am working on an e-learning project using SCROM APIs, but now I got stuck at one point: how to get server-side JavaScript value in my core Android activity IN WEBVIEW from scrom API?
I am trying below code:
public class MyJavaScriptInterface { Context mContext; /** Instantiate the interface and set the context */ MyJavaScriptInterface(Context c) { mContext = c; } /** retrieve the ids */ public void getbookmark(final String bookmarkId) { webView.loadUrl("javascript:Android.getbookmark(BOOKMARKED_PAGE);"); //getWindow().requestFeature(); } @SuppressWarnings("unused") public void showHTML(String html) { new AlertDialog.Builder(myApp) .setTitle("HTML") .setMessage(html) .setPositiveButton(android.R.string.ok, null) .setCancelable(false) .create() .show(); } } Do I have to take the value of onpagefinished() function of WebView?