0

我已经在 Surfaceview 上有 x 和 y 变量,但不知道如何从按钮所在的主要活动中访问它们。

这看起来像一个百万美元的问题,没有人回答我我已经多次发布了这个问题,但我找不到与此相关的任何内容。

这是按钮:

 Button1.setOnClickListener(this);
    }

    public void onClick(View v) {


//I want to access variable x and y of surfaceview


             if (x==230)
            x=x +20;

        invalidate();

    }

提前致谢

4

2 回答 2

0

您是否尝试过使用界面?获得 x 和 y 值后,您可以将它们传递给接口方法。然后,您可以在 MainActivity 上实现该接口。

于 2013-06-29T16:29:22.937 回答
0

如果您创建了一个SurfaceView包含 x 和 y 变量的子类,则最佳做法是为这些变量创建 setter 和 getter(我将其称为setPositionX()而不是setX(),因为SurfaceView已经有了该方法):

public class MySurfaceView extends SurfaceView {
    private int x;

    private int y;

    public void setPositionX(int x) {
        this.x = x;
    }

    public void setPositionY(int y) {
        this.y = y;
    }

    public int getPositionX() {
        return x;
    }

    public int getPositionY() {
        return y;
    }
}

在您的活动中:

private MySurfaceView mySurfaceView;

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    // Create SurfaceView and assign it to a variable.
    mySurfaceView = new MySurfaceView(this);

    // Do other initialization. Create button listener and other stuff.
    button1.setOnClickListener(this);
}

public void onClick(View v) {
    int x = mySurfaceView.getPositionX();
    int y = mySurfaceView.getPositionY();

    if (x == 230) {
        mySurfaceView.setPositionX(x + 20);
    }

    invalidate();
}
于 2013-06-29T17:04:47.360 回答