当没有足够的空间时,有没有办法隐藏视图

发布于 2024-11-09 20:02:34 字数 110 浏览 0 评论 0原文

假设我将 10 个 ImageView 放入 LinearLayout 中。有些手机的屏幕太小,只能容纳 9 个屏幕。 10号会更小。

如果屏幕上没有足够的空间,有没有办法隐藏第 10 个?

Let's imagine I put 10 ImageViews into a LinearLayout. On some phones, the screen is too small, only 9 could fit. The 10th will be smaller.

Is there a way to hide the 10th if there is not not enough room on the screen?

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

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

发布评论

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

评论(2

碍人泪离人颜 2024-11-16 20:02:34

是的,这是可能的。您可以获取屏幕的高度,然后添加图像并计算您添加的所有图像的高度总和,并进行比较, if (sumHeightImages >= screenHeight) :然后将其余图像的可见性设置为 GONE :)

Yes, it is possible. You can get the Height of your screen, and then add an image and calculate the height sum of all the images you added, and compare, if (sumHeightImages >= screenHeight) : then set the visibility of the rest images to GONE :)

伴梦长久 2024-11-16 20:02:34

ScrollLayout 与包含 ImageView 的嵌套 LinearLayout 结合使用。

Use a ScrollLayout with the nested LinearLayout that contains the ImageViews.

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