Control follows the finger movement (experience)

Source: Internet
Author: User
        /** * Initial coordinates *  are relative to the control itself coordinates * *  x y finger pressed coordinates */private float x = 0, y = 0; @Overridepublic boolean ontouchevent (Moti OnEvent event) {//finger pressed coordinates float DOWNX = 0, DownY = 0;//shifted coordinates after change of value float MoveX = 0, Movey = 0, Changex = 0, Changey = 0;SW Itch (Event.getaction () & Motionevent.action_mask) {Case MotionEvent.ACTION_DOWN:downX = Event.getx ();d owny = Event.gety (); x = Event.getx (); y = Event.gety (); Break;case MotionEvent.ACTION_MOVE:moveX = Event.getx (); Movey = Event.gety (); Changex = Movex-downx;changey = Movey-downy;//this.getx ()  this.gety () is the coordinates of the parent control float CurrentX = THIS.G EtX () + changex-x;float currenty = this.gety () + changey-y;this.setx (currentx); this.sety (currenty);//Place the moved coordinates at the pressed position do Wnx = Movex;downy = Movey;break;} return true;}    

  

Control follows the finger movement (experience)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.