5

我在水平滚动视图中添加了线性布局,并在布局中添加了一些文本视图。是否有可能在此布局中获得可见的孩子。

此代码获取所有孩子,但我只想让孩子可见(当前显示):

final HorizontalScrollView scroll = (HorizontalScrollView)findViewById(R.id.horizontalScrollView1);
    LinearLayout linearLayout = ((LinearLayout)scroll.findViewById(R.id.linearLayout1));
    int chilrenNum = linearLayout.getChildCount();
4

1 回答 1

3

好吧,经过一番搜索后,我找到了这个监听滚动事件的答案。在 Android 中实现滚动事件监听器。这个想法是在您的活动中覆盖onScrollChangedScrollView跟踪滚动视图的可见部分。

这样做,您可以通过如下所示的代码轻松获取可见视图:

int currentPosition = lastXPosition; // lastXPosition gets updated from scroll event
int layoutWidth = linearLayout.getWidth();
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int childWidth = layoutWidth/linearLayout.getChildCount();
int firstVisibleXPos = currentPosition - width/2; // currentPosition will be in the middle of the screen
int lastVisibleXPos = currentPosition + width/2;

int indexOfFirstVisible = firstVisibleXPos/childWidth;
int indexOfLastVisible  = lastVisibleXPos/ childWidth;

以上所有代码都假定子视图大小是固定的。如果您使用可变子大小,则需要先获取它们的宽度并跟踪它,然后根据父视图中的索引和位置计算可见性。

于 2013-03-27T09:48:04.957 回答