Fit Screen Android WebApp(避免水平滚动)

发布于 2025-01-08 21:08:45 字数 244 浏览 0 评论 0原文

我正在尝试解决我的网络应用程序中的问题,我想避免水平滚动(仅允许向下滚动)

我添加此标签以避免在 IOS 浏览器中出现并且工作正常,但在 Android 浏览器中不行。 。

<meta name = "Viewport" content = "maximum-scale=1, width=device-width,  maximum-scale=1.0; user-scalable=0" >

i'm trying to fix an issue in my web app, i want to avoid the horizontal scrolling (only aloows the scrool down-up)

I add this tag to avoid it in IOS Browser and work fine, but not in Android browsers...

<meta name = "Viewport" content = "maximum-scale=1, width=device-width,  maximum-scale=1.0; user-scalable=0" >

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

維他命╮ 2025-01-15 21:08:45

确保你的 body 宽度为 100%,并且没有子元素的固定宽度高于屏幕水平分辨率。

除此之外,标头中的这个元标记应该足够了:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>

Make sure that your body has width 100%, and that no child has a fixed width higher than the screen horizontal resolution.

Other than that, this meta tag in the header should be enough:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
起风了 2025-01-15 21:08:45

你可以使用:

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

you could use:

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