Back to project page JSBridge.
The source code is released under:
MIT License
If you think the Android project JSBridge listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.siva4u.jsbridge; import android.graphics.Bitmap; import android.webkit.WebView; public interface JSBridgeInteface { public void onPageStarted (WebView view, String url, Bitmap favicon); public void onPageFinished(WebView view, String url); public boolean shouldOverrideUrlLoading(WebView view, String url); }