Guest User

Untitled

a guest
Feb 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. private void makeTextBigger() {
  2. WebSettings settings = webview.getSettings();
  3. settings.setTextZoom(settings.getTextZoom() + 10);
  4. }
  5.  
  6. webview.setWebViewClient(new WebViewClient(){
  7. public void onPageStarted(WebView wv, String url, Bitmap favicon){
  8. show_WebviewLoadingProgressBar();
  9. }
  10.  
  11. public void onPageFinished(WebView wv, String thisUrl){
  12. hide_WebviewLoadingProgressBar();
  13. }
  14. });
Add Comment
Please, Sign In to add comment