Android 如何使用 webview 在大图像中显示完整尺寸
我有巨大的图像,但我无法使用 webview 在平板电脑中显示完整尺寸。 只显示一部分,无法显示完整图像
怎么办?
谢谢
I have huge-image , but i can't using webview to display full size in tablet .
Only display a part , it cannot display full image
how can i do ?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是加载到
Webview
中的图像溢出了设备宽度,您可以尝试将 Webview 的LayoutAlgorithm
更改为单列。这会自动调整所有屏幕尺寸和方向的图像尺寸。
通过这个问题
If you mean that the Image you're loading in to the
Webview
overflows the device width, you can try changing the Webview'sLayoutAlgorithm
to Single Column.This automatically adjusts image size for all screen sizes and orientations.
Via This Question