移动ImageView(Android)[重复]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动ImageView(Android)[重复]相关的知识,希望对你有一定的参考价值。

这个问题在这里已有答案:

当用户点击ImageView时,我正试图测试设置GameView的位置。每当我点击模拟器时,应用程序崩溃时都没有任何错误消息。同样的结果,当我尝试setX / setYsetTop / setLeft我无法弄清楚我在这里缺少什么。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <com.example.test.GameView
        android:id="@+id/groupLayout"
        android:layout_width="300dp"
        android:layout_height="300dp">

        <ImageView
            android:id="@+id/flagImage"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/flag"
            />
    </com.example.test.GameView>
</LinearLayout>

public class GameView extends LinearLayout {
    private ImageView flagImage;

    public GameView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);

        setBackgroundColor(Color.BLACK);
        flagImage = findViewById(R.id.flagImage);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        LayoutParams par = (LayoutParams)flagImage.getLayoutParams();
        par.leftMargin += 30;
        flagImage.setLayoutParams(par);

        return super.onTouchEvent(event);
    }
}
答案

我认为你应该在GameView类中设置更多的构造函数。 public class GameView extends LinearLayout { private ImageView flagImage;

 public GameView(Context context) {
    super(context);

    setBackgroundColor(Color.BLACK);
    flagImage = findViewById(R.id.flagImage);
}
public GameView(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);

    setBackgroundColor(Color.BLACK);
    flagImage = findViewById(R.id.flagImage);
}
  public GameView(Context context, @Nullable AttributeSet attrs,@AttrRes int 
                  defStyleAttr) {
    super(context, attrs,defStyleAttr);

    setBackgroundColor(Color.BLACK);
    flagImage = findViewById(R.id.flagImage);
}

@Override
public boolean onTouchEvent(MotionEvent event) {
    LayoutParams par = (LayoutParams)flagImage.getLayoutParams();
    par.leftMargin += 30;
    flagImage.setLayoutParams(par);

    return super.onTouchEvent(event);
}}

你可以将它的默认构造函数添加到类中。如果这不起作用,那么@ me。

以上是关于移动ImageView(Android)[重复]的主要内容,如果未能解决你的问题,请参考以下文章

Android - 在屏幕上移动 ImageView(如拖动)

如何在相机上移动 ImageView?

如何在 Android 中单击 ImageView 时从一个片段移动到另一个片段?

在 Android 中,如何移动裁剪的图像? (高级ImageView定位)

Android当用户单击按钮时如何移动ImageView(对于游戏)

从imageview Android中删除图像[重复]