无法在启用FastScroll的ListView上选择右键

时间:2016-01-26 07:06:10

标签: android listview scrollbar

我有一个带有左边图像的ListView,标题&中间的字幕和右边的ImageButton(此按钮右侧没有任何边距)。

enter image description here

<ListView
    android:id="@+id/contacts"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:cacheColorHint="@android:color/transparent"
    android:fastScrollEnabled="true"
    android:scrollbarStyle="outsideInset"/>

我为此ListView启用了快速滚动功能。当我尝试单击右侧的ImageButton时,滚动条会聚焦,ListView会开始滚动。我无法选择右侧的按钮。请帮帮我。

1 个答案:

答案 0 :(得分:3)

您需要覆盖ListView类及其onInterceptTouchEvent方法。

public class CustomListView extends ListView {
    public CustomListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        setFastScrollEnabled(false);
        boolean possibleResult = super.onInterceptTouchEvent(ev);
        setFastScrollEnabled(true);

        boolean actualResult = super.onInterceptTouchEvent(ev);

        if (ev.getAction() == MotionEvent.ACTION_DOWN) {
            return possibleResult && actualResult;
        }

        return super.onInterceptTouchEvent(ev);
    }
}

它看起来像:
enter image description here

但是,您观察到的问题是预期的行为 正确的解决方法是在行的末尾添加填充。

查看Google的PhoneBook应用程序,例如:
enter image description here
正如您在此处所看到的,单元格尺寸小于屏幕宽度的100%。

我希望,这有帮助