如何在屏幕上独立移动2个圆圈?

时间:2011-09-03 12:53:29

标签: android bitmap ontouchevent

我有一个应用程序在屏幕上绘制2个圆圈。一旦绘制,我可以移动其中一个圆圈并放置在我想要的位置。有没有办法确定我触摸了哪个圆圈,以便我可以移动那个特定的圆圈?目前我只能在中心的中心移动圆圈。

public boolean onTouchEvent(MotionEvent ev) {
      switch (ev.getAction()) {
            case MotionEvent.ACTION_DOWN: {
               if(xyFound == false) {
                centreX = (int) ev.getX()-70;
                centreY = (int) ev.getY()-70;
                xyFound = true;

               } else {
                centreA = (int) ev.getX()-70;
                centreB = (int) ev.getY()-70;
                abFound = true;
                bothCirclesInPlace  = true;
                invalidate();
               }
            }

            case MotionEvent.ACTION_MOVE: {
                if(xyFound == false){
                    centreX = (int) ev.getX()-70;
                    centreY = (int) ev.getY()-70;
                    xyFound = true;
                }else{
                    centreA = (int) ev.getX()-70;
                    centreB = (int) ev.getY()-70;
                    bothCirclesInPlace = true;
                    invalidate();
             }      break;

     }          

[UPDATE1]

@Override
    public boolean onTouchEvent(MotionEvent ev) {



        switch (ev.getAction()) {

            case MotionEvent.ACTION_DOWN: {


                float circ1Val = centreX + centreY;
                float circ2Val = centreA + centreB;

                float choice1 = circ1Val - (ev.getX() + ev.getY());
                float choice2 = circ2Val - (ev.getX() + ev.getY());



                float circleToBeMoved = choice1 < choice2 ? ;

。 我不确定计算每个圆圈和触摸事件之间距离的最佳方法。这是正确的行吗?或者,还有更好的方法?感谢

1 个答案:

答案 0 :(得分:0)

有以下方法:

ACTION_DOWN上,您可以确定触摸点旁边的圆圈。因此,您需要计算从(centreX,centreY)(ev.getX(),ev.getY())以及从(centreA,centreB)(ev.getX(),ev.getY())的距离。如果第一个小于第二个圆圈,则移动第一个圆圈,否则移动第二个圆圈(将此选项保存在字段circleToBeMoved中)。如果两个距离都超过阈值(例如圆的半径),也许你想要拒绝任何移动。

其次,在ACTION_MOVE上只移动circleToBeMoved中包含的圈子(如果有的话)。