我正在努力移动图像视图。我的布局在屏幕顶部有一个linearLayout,在编辑文本的正下方,然后是我的图像视图的视图。当我触摸图像时,这会在屏幕上显示,从那时起我就可以控制它,将手指移动到球的开始处,而不是它实际出现在屏幕上的位置。我正在使用getRawX和getRawY(这些方法给出了相对于屏幕的绝对坐标),我认为问题是图像出现在这些值上但是相对于它的视图,而不是屏幕。我想如果我总结图像视图所在视图上方视图的高度,并将其减去getRawX值,它将得到修复,但我看到LayoutParams的方法高度只会给我一个常量表示填充父,匹配父和包装内容。无论如何,它必须比这样做容易。
这就是我的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/buttonsLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/leftButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:text="LEFT" />
<Button
android:id="@+id/upButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:text="UP" />
<Button
android:id="@+id/downButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:text="DOWN" />
<Button
android:id="@+id/rightButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:text="RIGHT" />
</LinearLayout>
<EditText
android:id="@+id/coordinatesTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
<requestFocus />
</EditText>
<ImageView
android:id="@+id/ballImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ball" />
</LinearLayout>
ball.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
LayoutParams layoutParams = (LayoutParams) ball.getLayoutParams();
switch (event.getAction()){
case MotionEvent.ACTION_DOWN:
break;
case MotionEvent.ACTION_UP:
break;
case MotionEvent.ACTION_MOVE:
int x_cord = (int) event.getRawX();
int y_cord = (int) event.getRawY();
layoutParams.leftMargin = x_cord;
layoutParams.topMargin = y_cord;
ball.setLayoutParams(layoutParams);
break;
default:
break;
}
return true;
}
});