(int x, int y, Component cmp)
| 3291 | } |
| 3292 | |
| 3293 | private void initRippleEffect(int x, int y, Component cmp) { |
| 3294 | if (cmp.isRippleEffect()) { |
| 3295 | Motion motion = Motion.createEaseInMotion(0, 1000, 800); |
| 3296 | motion.start(); |
| 3297 | setRippleMotion(motion); |
| 3298 | setRippleComponent(cmp); |
| 3299 | rippleX = x; |
| 3300 | rippleY = y; |
| 3301 | } |
| 3302 | } |
| 3303 | |
| 3304 | private void tactileTouchVibe(int x, int y, Component cmp) { |
| 3305 | if (tactileTouchDuration > 0 && cmp.isTactileTouch(x, y)) { |
no test coverage detected