Android 如何使用 webview 在大图像中显示完整尺寸

发布于 2024-12-12 06:38:44 字数 83 浏览 0 评论 0原文

我有巨大的图像,但我无法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摘星┃星的人 2024-12-19 06:38:44

如果您的意思是加载到 Webview 中的图像溢出了设备宽度,您可以尝试将 Webview 的 LayoutAlgorithm 更改为单列。

webview.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);

这会自动调整所有屏幕尺寸和方向的图像尺寸。

通过这个问题

If you mean that the Image you're loading in to the Webview overflows the device width, you can try changing the Webview's LayoutAlgorithm to Single Column.

webview.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);

This automatically adjusts image size for all screen sizes and orientations.

Via This Question

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文