Searched defs:mSwipeThreshold (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java215 private int mSwipeThreshold; field in class:KeyboardView
372 mSwipeThreshold = (int) (500 * getResources().getDisplayMetrics().density);
396 if (velocityX > mSwipeThreshold && absY < absX && deltaX > travelX) {
403 } else if (velocityX < -mSwipeThreshold && absY < absX && deltaX < -travelX) {
410 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
417 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {

Completed in 44 milliseconds