本文介绍了如何检查线性布局中是否有可用空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有水平方向的线性布局.

I have linearlayout that with horizontal orientation.

我正在通过扩展ImageViews在其中添加ImageView项目.如何检查线性布局中是否没有空间?

I am adding ImageView item in it with inflating ImageViews.How can I check if there is no more space in the linear layout ?

例如,在小屏幕上,我将仅添加5个项目,但在大屏幕上,我将最多添加8个项目.(取决于屏幕的大小)

For example in small screens I will add only 5 items but on big screens I will add up to 8. (depending of the size of the screen)

推荐答案

您也许可以看一下此示例.

You can maybe take a look at this example.

http://hzqtc.github.io/2013/12/android-custom-layout-flowlayout.html

这篇关于如何检查线性布局中是否有可用空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-09 08:06