在Android WebView中使用水平滚动

时间:2016-04-14 08:17:19

标签: android webview epublib monocle

我目前正在使用epublib-core阅读epub并使用以下代码在Android WebView中显示它们 -

webView.loadDataWithBaseURL(baseURL, new String(spineReferences.get(chapter/* <- int*/).getResource().getData()), "text/html", "utf-8", null);

但它正在使用Vertical Scroll,而我想要一个Horizo​​ntalScroll。在搜索网络后,我找到Monocle,但我不知道如何将MonocleepublibWebView进行整合。关于如何使用水平滚动的任何想法?

2 个答案:

答案 0 :(得分:3)

Atlast,我可以在应用程序中启用Horizo​​ntal Scroll(没有任何Page Transitions)。使用此代码水平滚动 -

创建自定义WebViewClient -

public class CustomWebClient extends WebViewClient {
private Context mContext;

public CustomWebClient(Context context) {
    this.mContext = context;
}

@Override
public void onPageFinished(WebView view, String url) {
    super.onPageFinished(view, url);

    final MyWebView myWebView = (MyWebView) view;

    String varMySheet = "var mySheet = document.styleSheets[0];";

    String addCSSRule = "function addCSSRule(selector, newRule) {"
            + "ruleIndex = mySheet.cssRules.length;"
            + "mySheet.insertRule(selector + '{' + newRule + ';}', ruleIndex);"

            + "}";

    String insertRule1 = "addCSSRule('html', 'padding: 0px; height: "
            + (myWebView.getMeasuredHeight() /  mContext.getResources().getDisplayMetrics().density)
            + "px; -webkit-column-gap: 0px; -webkit-column-width: "
            + myWebView.getMeasuredWidth() + "px;')";

    myWebView.loadUrl("javascript:" + varMySheet);
    myWebView.loadUrl("javascript:" + addCSSRule);
    myWebView.loadUrl("javascript:" + insertRule1);

}
}

修改

我将epub lib与Monocle集成以获得更好的效果,这里是整个源代码的链接 - https://drive.google.com/drive/folders/0B8UizUpBrF1YX3UxcW5nLUVQMEk

答案 1 :(得分:2)

要获得水平分页,请先将css属性添加到html,然后再加载到WebView

String html = getBookContent();  // load epub content to String

int density = getResources().getDisplayMetrics().density;
int width = (int) Math.floor(mWebView.getWidth() / density);
int height = (int) Math.floor(mWebView.getHeight() / density);

String style= "<meta name=\"viewport\" content=\"width=device-width, height=device-height, initial-scale=1\"/>\n" +
     "<style type=\"text/css\">body {height: %heightpx; \n" + 
     "-webkit-column-width: %widthpx; -webkit-column-gap:0;}</style></head>";

html = html.replace("</head>", style);
html = html.replace("%width", String.valueOf(width));
html = html.replace("%height", String.valueOf(height));

 mWebView.loadDataWithBaseURL(baseUrl, html, "text/html", "utf-8", null);