Guest User

Untitled

a guest
Apr 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.hangoutcanopy;
  2.  
  3. import android.webkit.WebView;
  4. import android.webkit.WebViewClient;
  5.  
  6. public class CanopyWebViewClient extends WebViewClient
  7. {
  8.     public CanopyWebViewClient()
  9.     {
  10.         super();
  11.     }
  12.  
  13.     @Override
  14.     public void onPageFinished(WebView view, String url)
  15.     {
  16.         super.onPageFinished(view, url);
  17.     }
  18. }
Add Comment
Please, Sign In to add comment