Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

打开第三方站点需要保留登录状态,webview需要接受cookie,按照官方提供的API CookieManager可以实现

// 1. 在loadurl之前调用接受cookie方法
android.webkit.CookieManager cookieManager = android.webkit.CookieManager.getInstance();
cookieManager.setAcceptThi~rdPartyCookies(this,true);
// 2. onPageFinished 
CookieManager.getInstance().flush();