Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example 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.significantfiles.mrcounter.js; //from www. ja va 2 s .c o m import com.significantfiles.mrcounter.Constants; import android.util.Log; import android.view.View; import android.webkit.WebView; public class WebViewFacade { private final WebView webView; public WebViewFacade( final WebView view ) { this.webView = view; } public static String name() { return WebViewFacade.class.getSimpleName(); } public void sendDocumentReady() { Log.d( Constants.LOG_TAG, "Activate WebView." ); // this.webView.setVisibility(View.VISIBLE); this.webView.bringToFront(); } public String buildDate() { return String.valueOf( System.currentTimeMillis() ); } }