Back to project page hubblog.
The source code is released under:
MIT License
If you think the Android project hubblog 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.donskifarrell.Hubblog.Activities.Adapters; /* w w w .jav a 2 s. c o m*/ import android.webkit.WebView; import android.webkit.WebViewClient; /** * Created with IntelliJ IDEA. * User: donski * Date: 19/11/13 * Time: 21:09 */ public class ArticleWebViewAdapter extends WebViewClient { private WebView webView; public ArticleWebViewAdapter(WebView view) { webView = view; } @Override public void onPageFinished(WebView view, String url){ webView.loadUrl("javascript:updateArticle();"); } public void triggerArticleUpdate(){ webView.loadUrl("javascript:updateArticle();"); } }