예제 #1
0
 @Override
 protected void onPreExecute() {
   super
       .onPreExecute(); // To change body of overridden methods use File | Settings | File
                        // Templates.
   dialog.show();
 }
예제 #2
0
 @Override
 protected void onPostExecute(String s) {
   if (s != null) {
     data = s;
     webView.loadData(data, "text/html; charset=UTF-8", null);
     webView.invalidate();
   }
   dialog.dismiss();
 }