Android Open Source - HybridFramework_for_HTML5_Android Bridge Listener






From Project

Back to project page HybridFramework_for_HTML5_Android.

License

The source code is released under:

GNU General Public License

If you think the Android project HybridFramework_for_HTML5_Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.blogspot.techzealous.hybridframework_for_html5.utils;
/*w  ww . j a v a  2  s.  co m*/
import java.util.ArrayList;

import android.view.View;
import android.webkit.WebView;

public interface BridgeListener {

  public void callJsFunction(String aFunctionAndArgs);
  public void callJsFunction(String aFunctionName, String aArg);
  public void callJsFunction(String aFunctionName, ArrayList<String> aArgs);
}




Java Source Code List

com.blogspot.techzealous.hybridframework_for_html5.MainActivity.java
com.blogspot.techzealous.hybridframework_for_html5.utils.BridgeHelper.java
com.blogspot.techzealous.hybridframework_for_html5.utils.BridgeListener.java
com.blogspot.techzealous.hybridframework_for_html5.utils.ConstantsHfh.java
com.blogspot.techzealous.hybridframework_for_html5.utils.InstanceData.java
com.blogspot.techzealous.hybridframework_for_html5.utils.WebViewClientHfh.java