View控件跟随鼠标移动
摘要:
public boolean onTouch(View view, MotionEvent motionEvent) { if(motionEvent.getAction() == MotionEvent.ACTION_DOWN){ //记录按下时的数据 sx = (int) motionEvent.getRawX(); ... 阅读全文
posted @ 2019-04-24 18:20 赵子隆 阅读(199) 评论(0) 推荐(0) 编辑