简体   繁体   中英

How to avoid Android button dragging out side the screen

i have implemented button drag in my application , but it working the problem is why am dragging button is going out side of side am not able see the button. but fix it. i need to drag side the the screen. i have tried below code if any wrong correct me,

@Override
    public boolean onTouch(View v, MotionEvent event) 
    {
            final int d_X = (int) event.getRawX();
            final int d_Y = (int) event.getRawY();
            PointF start = new PointF();

            switch (event.getAction() & MotionEvent.ACTION_MASK) {
                case MotionEvent.ACTION_DOWN:
                    start.set(event.getX(),event.getY());
                    if(shouldAllowToDrag) // if it true then i will allow to drag.
                    {
                        RelativeLayout.LayoutParams lParams = (RelativeLayout.LayoutParams) v.getLayoutParams();
                        _xDelta = d_X - lParams.leftMargin;
                        _yDelta = d_Y - lParams.topMargin;
                    }
                    else 
                    {
                        //check for double click
                        long pressTime = System.currentTimeMillis();
                        // If double click...
                        String buttonTitle = moveButton.getText().toString();
                        if (pressTime - lastPressTime <= DOUBLE_PRESS_INTERVAL) {
                            Log.i(TAG,"doubleTappedistrue");

                            hasLatchedDown = false;
                            if(buttonTitle.equals("Unlocked"))
                            {
                                hasButtonUnlocked = false;
                                moveButton.setText("Locked");
                            }
                            else if(buttonTitle.equals("Locked"))
                            {
                                hasButtonUnlocked = true;
                                moveButton.setText("Unlocked");
                            }
                        }
                        else
                        {
                            hasLatchedDown = true;
                            buttonLastStateText = buttonTitle;
                            moveButton.setText("Unlocked");
                        }
                        lastPressTime = pressTime;  

                    }
                    break;
                case MotionEvent.ACTION_UP:
                    if(!shouldAllowToDrag)
                    {
                        if(hasLatchedDown)
                        {
                            hasLatchedDown = false;
                            moveButton.setText(buttonLastStateText);
                        }
                    }
                    break;
                case MotionEvent.ACTION_POINTER_DOWN:
                    break;
                case MotionEvent.ACTION_POINTER_UP:
                    break;
                case MotionEvent.ACTION_MOVE:
                    if(shouldAllowToDrag){
                        View parentView = (View) v.getParent();
                        parentView.getWidth();
                        parentView.getHeight();
                        imageView.getWidth();
                        RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) v.getLayoutParams();
                        layoutParams.leftMargin = d_X - _xDelta;
                        layoutParams.topMargin = d_Y - _yDelta;

                    v.setLayoutParams(layoutParams);
                    }




                    break;
            }
            return true;
    }

You should add a min/max check:

layoutParams.leftMargin = Math.min(Math.max(d_X - _xDelta,0), parentView.getWidth() - layoutParams.width);

Same idea for the topMargin. (code not compile checked) Let me know if this helped.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM