我在主要活动中有两个按钮以编程方式进行,没有xml。 按钮应该在surfaceview上移动位图,我该如何实现呢?
here is one of the Buttons:
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();
}
答案 0 :(得分:1)
如果您已经创建了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();
}
答案 1 :(得分:0)
如果希望将值传递回原始活动,则应使用startActivityForResult。
然后,您可以在onActivityResult回调中访问它们