获取listView中的所有完整可见对象

时间:2012-11-01 15:44:30

标签: android listview

我有一个ListView,它包含更多元素,然后我可以一次显示。现在我想让所有元素的索引完全可见( - >除了那些只是部分可见的元素)。 此时我使用getFirstVisiblePosition()& getLastVisiblePosition()进入for-loop进行迭代,但这些方法并不准确。

有没有更好的解决方案?

4 个答案:

答案 0 :(得分:30)

ListView将其行组织在一个自上而下的列表中,您可以使用getChildAt()访问该列表。所以你想要的很简单。让我们得到第一个和最后一个视图,然后检查它们是否完全可见:

// getTop() and getBottom() are relative to the ListView, 
//   so if getTop() is negative, it is not fully visible
int first = 0;
if(listView.getChildAt(first).getTop() < 0)
    first++;

int last = listView.getChildCount() - 1;
if(listView.getChildAt(last).getBottom() > listView.getHeight())
    last--;

// Now loop through your rows
for( ; first <= last; first++) {
    // Do something
    View row = listView.getChildAt(first);
}

<强>加成

  

现在我想让所有元素的索引完全可见

我不确定那句话是什么意思。如果上面的代码不是您想要的索引,您可以使用:

int first = listView.getFirstVisiblePosition();
if(listView.getChildAt(0).getTop() < 0)
    first++;

使索引相对于您的适配器(即adapter.getItem(first)。)

答案 1 :(得分:1)

我这样做的方法是扩展您在getView适配器的ListView中传递的任何视图,并覆盖方法onAttachedToWindowonDetachedToWindow以跟踪可见的索引。

答案 2 :(得分:1)

尝试onScrollListner,你可以使用getFirstVisiblePosition和getLastVisiblePosition。

这个this链接,它包含类似的问题类型。我想你在那里得到了答案..,

答案 3 :(得分:-1)

上面的代码有点正确。如果您需要在代码下面找到完全可见的视图位置

public void onScrollStateChanged(AbsListView view, int scrollState)  {
    // TODO Auto-generated method stub
    View v = null;

    if (scrollState == 0) {
        int first =0;
        if (view.getChildAt(first).getTop() < 0)
            first++;
        int last = list.getChildCount() - 1;
        if (list.getChildAt(last).getBottom() > list
                .getHeight())
            last--;
        // Now loop through your rows
        for ( ; first <= last; first++) {
            // Do something

            View row = view.getChildAt(first);
            // postion for your row............ 
            int i=list.getPositionForView(row);
        }
    }
        // set the margin.
}