Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个,它只ViewFlipper包含 on ListView/previos 视图,ListView(它实现了 swipedetector)向上或向下滚动。如果我只想滑动,是否有可能取消这些滚动?
ViewFlipper
ListView
您可以创建自己的类来扩展ViewFlipper和覆盖onInterceptTouchEvent(MotionEvent ev)拦截触摸事件的方法。
onInterceptTouchEvent(MotionEvent ev)
如果你总是返回true这个函数,你的 viewflipper 将消耗所有的 touchEvents
true