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.
我有一个滚动条的问题。
@Override public boolean onTouchEvent(MotionEvent ev) { Log.d(TAG, "compute: " + mScroller.computeScrollOffset()); mScroller.fling(0, 0, 0, 1000, 0, 0, 0, 2000); invalidate(); ...
但是我看不到触摸的任何影响,我做错了什么?谢谢!
您只需mScroller.computeScrollOffset()在使用 mScroller.getCurrX/Y() 访问当前 x 和 y 值之前直接调用。滚动条不会滚动视图本身,它只是提供您需要手动应用的值。
mScroller.computeScrollOffset()