gpt4 book ai didi

android - 实现 HTML 书状分页

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:47 25 4
gpt4 key购买 nike

我在 HTML book-like pagination 找到了解决这个问题的方法我无法使用 eclipse 3.6 在 android 上实现相同的功能。我使用的代码如下:

    mWebView.setWebViewClient(new WebViewClient() {     
public void onPageFinished(WebView view, String url) {
// Column Count is just the number of 'screens' of text. Add one for partial 'screens'
int columnCount = Math.floor(view.getHeight() / view.getWidth())+1;

// Must be expressed as a percentage. If not set then the WebView will not stretch to give the desired effect.
int columnWidth = columnCount * 100;
String js = "var d = document.getElementsByTagName('body')[0];" + "d.style.WebkitColumnCount=" + columnCount + ";" + "d.style.WebkitColumnWidth='" + columnWidth + "%';";

mWebView.loadUrl("javascript:(function(){" + js + "})()");
}
});

mWebView.loadUrl("file:///android_asset/chapter.xml");

LogCat显示给我的宽高都是0,我是不是放错地方了?任何帮助将不胜感激。

谢谢

最佳答案

我找到了这个解决方案并且对我有用。在此 HTML book-like pagination 上尝试 Nacho L 解决方案?

关于android - 实现 HTML 书状分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4955206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com