2012-12-21 117 views

回答

3

靈敏度或「魅力」觸發事件onFling()需要的是在checked here GestureDetector:

if ((Math.abs(velocityY) > mMinimumFlingVelocity) 
     || (Math.abs(velocityX) > mMinimumFlingVelocity)){ 
    handled = mListener.onFling(mCurrentDownEvent, ev, velocityX, velocityY); 
} 

可悲有改變私有成員沒有現有方法mMinimumFlingVelocity 。但是,您應該能夠將整個GestureDetector類複製到項目中的新類中,並自己硬編碼一個新值。