2

ここで、ドラッグ関数を作成します。もう一度ドラッグすると、元の位置から移動します。

PopupWindow のボタンを押して移動すると、PopupWindow 全体の移動を実現できます。初期化はGravity.BOTTOMの位置です。

ウィンドウがこの位置にあるためです。だからその動きは正しい。しかし、2 回目にボタンをクリックして移動を開始すると、突然最初の位置にジャンプして移動します。

この問題は何ですか?

private void createPopup()
{
    LayoutInflater flater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
    View view = flater.inflate(R.layout.pop, null);

    view.findViewById(R.id.button2).setOnTouchListener(new OnTouchListener()
    {
        public boolean onTouch(View v, MotionEvent event)
        {
            int action = event.getAction();
            switch(action)
            {
                case MotionEvent.ACTION_DOWN:
                    lastX = (int)event.getRawX();
                    lastY = (int)event.getRawY();
                    break;

                case MotionEvent.ACTION_MOVE:
                    int dx = (int)event.getRawX() - lastX;
                    int dy = (int)event.getRawY() - lastY;
                    popup.update(dx, dy, -1, -1);

                    break;

            }
            return true;
        }
    });

    popup = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    popup.setFocusable(false);
    popup.setTouchable(true);
    popup.setOutsideTouchable(true);
    //popup.showAsDropDown(findViewById(R.id.ding), 100, 100);
    popup.showAtLocation(findViewById(R.id.button1), Gravity.BOTTOM, 0, 0);

    //
    popup.update();
}
4

0 に答える 0