android Programming Glossary: touch_slop
Android ACTION_MOVE Threshold http://stackoverflow.com/questions/6785068/android-action-move-threshold context .getScaledTouchSlop If you check the Android source for the ViewConfiguraton the default value for TOUCH_SLOP is 8dip but the comments mention that this value is a fallback only and the actual value is defined when the Android OS.. distance is being enforced at the OS level and your application will never be aware of drag events smaller than the TOUCH_SLOP value. You should also be aware that TOUCH_SLOP should not be used directly and the API deprecates the getTouchSlop method.. your application will never be aware of drag events smaller than the TOUCH_SLOP value. You should also be aware that TOUCH_SLOP should not be used directly and the API deprecates the getTouchSlop method and recommends getScaledTouchSlop which takes..
|