Difference between MotionEvent.getRawX and MotionEvent.getX

后端 未结 2 1164
不知归路
不知归路 2020-12-01 03:33

I would like to know The difference between MotionEvent.getRawX and MotionEvent.getX in android as one is numeric and the other is float?Whats the

2条回答
  •  难免孤独
    2020-12-01 04:11

    =>

    rawX = motionEvent.getX() + touchableButton.getX() + layout3.getX() + layout2.getX();
    

提交回复
热议问题