Back to project page movie-db.
The source code is released under:
MIT License
If you think the Android project movie-db 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.example.my_movie_db; /* ww w. j a v a2 s . c om*/ import android.webkit.WebView; import android.webkit.WebViewClient; public class OurViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView v, String data){ v.loadUrl(data); //v.loadData(data, "text/html", null); return true; } }