public void onLoadFinished(XWalkView view, String url) {
   // super.onLoadFinished(view, url);
   Log.d("MyLog", "Load Finished:" + url);
   if (detailProgressBar != null && detailProgressBar.isShowing()) {
     detailProgressBar.dismiss();
   }
   super.onLoadFinished(view, url);
 }
 public void onReceivedLoadError(
     XWalkView view, int errorCode, String description, String failingUrl) {
   Log.d("MyLog", "Load Failed:" + description);
   if (detailProgressBar != null && detailProgressBar.isShowing()) {
     detailProgressBar.dismiss();
   }
   super.onReceivedLoadError(view, errorCode, description, failingUrl);
 }
    public void onProgressChanged(XWalkView view, int progressInPercent) {
      super.onProgressChanged(view, progressInPercent);

      Log.d("MyLog", "Loading Progress:" + progressInPercent);
    }
 public void onLoadStarted(XWalkView view, String url) {
   super.onLoadStarted(view, url);
   Log.d("MyLog", "Load Started:" + url);
 }
Esempio n. 5
0
 @Override
 public void onReceivedSslError(XWalkView view, ValueCallback<Boolean> callback, SslError error) {
   super.onReceivedSslError(view, callback, error);
 }
Esempio n. 6
0
 @Override
 public void onReceivedLoadError(
     XWalkView view, int errorCode, String description, String failingUrl) {
   super.onReceivedLoadError(view, errorCode, description, failingUrl);
 }
Esempio n. 7
0
 @Override
 public void onProgressChanged(XWalkView view, int progressInPercent) {
   super.onProgressChanged(view, progressInPercent);
 }
Esempio n. 8
0
 @Override
 public void onLoadStarted(XWalkView view, String url) {
   //		System.out.println("onLoadStarted:"+url);
   super.onLoadStarted(view, url);
 }
Esempio n. 9
0
  @Override
  public void onLoadFinished(XWalkView view, String url) {

    super.onLoadFinished(view, url);
  }