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

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

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

<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会开始滚动.我无法选择右侧的按钮.请帮帮我.

解决方法:

您需要覆盖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);
    }
}

它看起来像:
android  – 无法在启用了FastScroll的ListView上选择右键

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

看一下Google的PhoneBook应用程序,例如:
android  – 无法在启用了FastScroll的ListView上选择右键
正如您在此处所看到的,单元格尺寸小于屏幕宽度的100%.

我希望,这有帮助

上一篇:c# – AutoCompleteComboBox向上箭头/向下箭头键滚动列表


下一篇:自定义浏览器的滚动条