android.webkit.WebView.isPrivateBrowsingEnabled()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(132)

本文整理了Java中android.webkit.WebView.isPrivateBrowsingEnabled()方法的一些代码示例,展示了WebView.isPrivateBrowsingEnabled()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebView.isPrivateBrowsingEnabled()方法的具体详情如下:
包路径:android.webkit.WebView
类名称:WebView
方法名:isPrivateBrowsingEnabled

WebView.isPrivateBrowsingEnabled介绍

暂无

代码示例

代码示例来源:origin: Justson/AgentWeb

@Override
public boolean isPrivateBrowsingEnabled() {
  if (Build.VERSION.SDK_INT == Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1
      && getSettings() == null) {
    return false; // getSettings().isPrivateBrowsingEnabled()
  } else {
    return super.isPrivateBrowsingEnabled();
  }
}

代码示例来源:origin: square/assertj-android

@TargetApi(HONEYCOMB)
public WebViewAssert isPrivateBrowsingEnabled() {
 isNotNull();
 assertThat(actual.isPrivateBrowsingEnabled()) //
   .overridingErrorMessage("Expected private browsing to be enabled but was disabled.") //
   .isTrue();
 return this;
}

代码示例来源:origin: square/assertj-android

@TargetApi(HONEYCOMB)
 public WebViewAssert isPrivateBrowsingDisabled() {
  isNotNull();
  assertThat(actual.isPrivateBrowsingEnabled()) //
    .overridingErrorMessage("Expected private browsing to be disabled but was enabled.") //
    .isFalse();
  return this;
 }
}

代码示例来源:origin: stackoverflow.com

WebView webView = new WebView(this, null, R.id.webView1, true); 
 webView.getSettings().setJavaScriptEnabled(true); 
 webView.loadUrl("google.com");
 Log.v("PrivateBrowsing", "" + webView.isPrivateBrowsingEnabled()); << returns true for me

代码示例来源:origin: com.squareup.assertj/assertj-android

@TargetApi(HONEYCOMB)
public WebViewAssert isPrivateBrowsingEnabled() {
 isNotNull();
 assertThat(actual.isPrivateBrowsingEnabled()) //
   .overridingErrorMessage("Expected private browsing to be enabled but was disabled.") //
   .isTrue();
 return this;
}

代码示例来源:origin: com.squareup.assertj/assertj-android

@TargetApi(HONEYCOMB)
 public WebViewAssert isPrivateBrowsingDisabled() {
  isNotNull();
  assertThat(actual.isPrivateBrowsingEnabled()) //
    .overridingErrorMessage("Expected private browsing to be disabled but was enabled.") //
    .isFalse();
  return this;
 }
}

代码示例来源:origin: jbruchanov/AnUitor

@Override
  public void run() {
    data.put("CanGoBack", wv.canGoBack());
    data.put("CanGoForward", wv.canGoForward());
    data.put("OriginalURL", wv.getOriginalUrl());
    data.put("URL", wv.getUrl());
    data.put("Title", wv.getTitle());
    data.put("Progress", wv.getProgress());
    WebSettings settings = wv.getSettings();
    fillSettings(settings, data);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
      data.put("CanZoomIn", wv.canZoomIn());
      data.put("CanZoomOut", wv.canZoomOut());
      data.put("IsPrivateBrowsingEnabled", wv.isPrivateBrowsingEnabled());
    }
    synchronized (lock) {
      lock.notifyAll();
    }
  }
});

相关文章

微信公众号

最新文章

更多

WebView类方法