19

我有一个实现expandable list activity.
在 XML 代码中(或者我可以在 java 中完成),我设置fastScrollEnabledtrue. 这确实可以实现快速滚动。但快速滚动仅适用于列表的顶部。就像我可以使用 fastscroll thumb bar 滚动整个列表,但只能在滚动条的顶部工作。它与整个列表不成比例。我可以将拇指栏拖到列表的底部,但它不会滚动,因为listview它已经滚动到底部,因为它只在列表的顶部工作的奇怪行为。
我知道令人困惑,如果需要,我可以尝试澄清更多......

我确实实现了一个自定义BaseExpandableListAdapter.

4

2 回答 2

5

我刚刚找到了一种解决方法来防止系统显示这种错误行为。

有两种情况使用不同的代码SectionIndexer来工作。

第一种情况是您使用 FastScrollbar-Thumb 导航到下一部分。假设这些组是您的部分,则用于实现的覆盖方法SectionIndexer如下所示:

@Override
public int getPositionForSection(int section) {
    return section;
}

// Gets called when scrolling the list manually
@Override
public int getSectionForPosition(int position) {
    return ExpandableListView.getPackedPositionGroup(
               expandableListView
                   .getExpandableListPosition(position));
}

第二种情况是您手动滚动列表并且快速滚动条根据部分而不是所有项目移动。因此,代码如下所示:

@Override
public int getPositionForSection(int section) {
    return expandableListView.getFlatListPosition(
               ExpandableListView.getPackedPositionForGroup(section));
}

// Gets called when scrolling the list manually
@Override
public int getSectionForPosition(int position) {
    return ExpandableListView.getPackedPositionGroup(
               expandableListView
                   .getExpandableListPosition(position));
}

可以看出,如果不进一步采用,这两种行为就无法一起发挥作用。

使其两者都起作用的解决方法是在有人手动滚动(即通过触摸滚动)时捕捉到这种情况。这可以通过使用OnScrollListener适配器类实现接口并将其设置到ExpandableListView

public class MyExpandableListAdapter extends BaseExpandableListAdapter 
                 implements SectionIndexer, AbsListView.OnScrollListener {

    // Your fields here
    // ...
    private final ExpandableListView expandableListView;
    private boolean manualScroll;

    public MyExpandableListAdapter(ExpandableListView expandableListView
                                   /* Your other arguments */) {
        this.expandableListView = expandableListView;
        this.expandableListView.setOnScrollListener(this);
        // Other initializations
    }

    @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
        this.manualScroll = scrollState == SCROLL_STATE_TOUCH_SCROLL;
    }

    @Override
    public void onScroll(AbsListView view, 
                         int firstVisibleItem, 
                         int visibleItemCount, 
                         int totalItemCount) {}

    @Override
    public int getPositionForSection(int section) {
        if (manualScroll) {
            return section;
        } else {            
            return expandableListView.getFlatListPosition(
                       ExpandableListView.getPackedPositionForGroup(section));
        }
    }

    // Gets called when scrolling the list manually
    @Override
    public int getSectionForPosition(int position) {
        return ExpandableListView.getPackedPositionGroup(
                   expandableListView
                       .getExpandableListPosition(position));
    }

    // Your other methods
    // ...
}

这为我修复了错误。

于 2013-06-24T14:26:04.380 回答
2

这是快速滚动条中的一个错误。它不能很好地与ExpandableListView.

请参阅我的代码

(它还包括某些情况下的解决方法)

于 2012-04-29T12:47:21.060 回答