拖放textview

时间:2011-12-02 11:41:06

标签: android drag-and-drop

我必须拖动,我无法完美拖动它: 问题是: 1)我必须拖动两到三次才能将它带到所需的位置。因此,textview不能顺利地跟随手指运动。 2)如果我向上移动textview,它只会向下移动。

我提供触摸事件的textview代码。请帮助。谢谢。

 final TextView t=(TextView)findViewById(R.id.textView4);
           t.setOnTouchListener(new OnTouchListener(){

            public boolean onTouch(View v, MotionEvent me) {
                    // TODO Auto-generated method stub
                float x = me.getX();
                float y = me.getY();

                if (me.getAction() == MotionEvent.ACTION_DOWN) {
                    status = START_DRAGGING;
                }
                if (me.getAction() == MotionEvent.ACTION_UP) {
                    status = STOP_DRAGGING;
                    t.setPadding((int) me.getX(), (int) me.getY(), 10, 10);

                    Log.i("Drag", "Stopped Dragging");
                }  if (me.getAction() == MotionEvent.ACTION_MOVE) {
                    if (status == START_DRAGGING) {
                        System.out.println("Dragging");

                        t.setPadding((int) me.getX(), (int) me.getY(), 10, 10);

                        t.invalidate();
                    }
                }return true;
            }}); 

1 个答案:

答案 0 :(得分:0)

在Android中,也许你是not moving Views the way they are supposed to

setPadding()不是最好的方法。


View的{​​{3}}