7

这是我正在做的非常简单的事情,我以前做过,但现在它没有像我预期的那样运行。无论如何,让我简要解释一下我正在尝试做什么以及我得到了什么::

场景:: 我有一个放置RelativeLayout了一个ImageView,现在我设置touchlistener如下:imageview.setOnTouchListener(this);

它要求我覆盖onTouch(View v,MotionEvent event)我所做的函数......并且在Action_Move我得到xy并将它们添加到左边距和上边距,这样我正在移动我的图像。

奇怪的问题:ImageView正在移动,但震动非常明显,就像我朝正确的方向移动一样,ImageView会向右侧移动,但在途中它又回到左侧,因此看起来图像不稳定,它在振动。 . 类似的东西.. 我给出了我得到的xy ......log希望这能给你这个想法。

ACTION_DOWN[#0(pid 0)=160,233]  Going right..
ACTION_MOVE[#0(pid 0)=160,233]  ////
ACTION_MOVE[#0(pid 0)=160,233]  //
ACTION_MOVE[#0(pid 0)=174,231]  //
ACTION_MOVE[#0(pid 0)=176,233]  //
ACTION_MOVE[#0(pid 0)=196,232]  //
ACTION_MOVE[#0(pid 0)=152,232]  // suddenly i got 152 as location for x... image comes     back
ACTION_MOVE[#0(pid 0)=167,232]  // again started to go right
ACTION_MOVE[#0(pid 0)=180,233]  // going right
ACTION_MOVE[#0(pid 0)=173,233]  // again comes a little back
ACTION_MOVE[#0(pid 0)=187,232]  // same thing goes till end..
ACTION_MOVE[#0(pid 0)=159,232]
ACTION_MOVE[#0(pid 0)=174,231]
ACTION_MOVE[#0(pid 0)=177,233]
ACTION_MOVE[#0(pid 0)=189,231]
ACTION_MOVE[#0(pid 0)=155,232]
ACTION_MOVE[#0(pid 0)=171,231]
ACTION_MOVE[#0(pid 0)=183,230]
ACTION_MOVE[#0(pid 0)=161,234]
ACTION_MOVE[#0(pid 0)=171,233]
ACTION_MOVE[#0(pid 0)=174,230]
ACTION_MOVE[#0(pid 0)=183,230]
ACTION_MOVE[#0(pid 0)=162,234]
ACTION_MOVE[#0(pid 0)=170,233]
ACTION_MOVE[#0(pid 0)=176,233]
ACTION_MOVE[#0(pid 0)=165,233]
ACTION_MOVE[#0(pid 0)=175,232]
ACTION_MOVE[#0(pid 0)=163,233]
ACTION_MOVE[#0(pid 0)=171,233]
ACTION_MOVE[#0(pid 0)=167,233]
ACTION_MOVE[#0(pid 0)=172,232]
ACTION_MOVE[#0(pid 0)=178,232]
ACTION_MOVE[#0(pid 0)=158,234]
ACTION_MOVE[#0(pid 0)=170,234]
ACTION_MOVE[#0(pid 0)=170,232]
ACTION_MOVE[#0(pid 0)=177,231]
ACTION_MOVE[#0(pid 0)=157,234]
ACTION_MOVE[#0(pid 0)=160,234]
ACTION_MOVE[#0(pid 0)=169,232]
ACTION_MOVE[#0(pid 0)=165,233]
ACTION_MOVE[#0(pid 0)=167,233]
ACTION_MOVE[#0(pid 0)=159,233]
ACTION_UP  [#0(pid 0)=161,233]

相对布局的 XML 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:background="#99000000">

    <ImageView
        android:id="@+id/imageview"
        android:layout_width="400dp"
        android:layout_height="400dp"
        android:layout_marginLeft="100dp"
        android:layout_marginTop="100dp"
        android:scaleType="matrix" />
</RelativeLayout>

所以,这是最大的,我可以解释我的问题,如果你需要什么,请告诉我。

更新::ImageView在其容器 中移动的代码,即RelativeLayout

case MotionEvent.ACTION_MOVE:
            LayoutParams params = (LayoutParams) imageview.getLayoutParams();

            params.leftMargin = params.leftMargin + x;
            params.topMargin = params.topMargin + y;

            imageview.setLayoutParams(params);
            break;
4

2 回答 2

5

中的 X 和 Y 变量onTouch是相对于onTouchListener附加视图的 X 和 Y。ImageView所以 10, 10 会从你的not of the 的左上角算起RelativeLayout

如果你使用这些值来移动你的ImageView,那么你自然会得到不稳定的行为,每个移动动作也会触发一个稍微不同的 OnTouchEvent 导致另一个移动动作——这个递归给你一个“振动”的效果。

于 2012-07-20T09:55:55.220 回答
0

当我通过该方法event.getRawY()而不是event.getY()移动 View 获得 Y 坐标时,摇晃的行为消失了。因此,如果您使用过该getY()方法,请尝试更改它。

于 2017-05-10T10:14:48.680 回答