我不知道有可能做我想做的事情...(对不起我的英文)
<TableRow>
<Button
android:id="@+id/button_left"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:onClick="moveLeft"
android:layout_column="1"
android:background="@drawable/bt_left"/>
<com.pauza.simpletetris.MyView
android:id="@+id/my_view"
android:layout_width="250dp"
android:layout_height="490dp"
android:layout_gravity="center_horizontal"
android:layout_column="2"
android:orientation="vertical"/>
从这里我调用MyView,但在MyView中Button_Left不存在。 游戏活动:
public class GameActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.game);
Button bt_right=(Button)findViewById(R.id.button_right);
Button bt_left=(Button)findViewById(R.id.button_left);
bt_right.setOnClickListener(new OnClickListener() {
@Override
public void onClick(final View v) {
moveRight();
}
});
bt_left.setOnClickListener(new OnClickListener() {
@Override
public void onClick(final View v) {
moveLeft();
}
});
}
protected void moveLeft() {
// TODO Auto-generated method stub
Toast.makeText(this, "You clicked left", Toast.LENGTH_LONG) .show();
}
private void moveRight() {
//call function from com.pauza.simpletetris.MyView <-- possible????
}
我希望你理解我的意思,谢谢你的一切。
答案 0 :(得分:1)
为了能够从XML设置onClick
calback方法(即使I don't recommend it出于可维护性原因),这些方法必须公开,命名必须完全匹配,并且需要额外的参数:View
。所以将moveRight和moveLeft更改为:
public void moveLeft(View v) {
// TODO Auto-generated method stub
Toast.makeText(this, "You clicked left", Toast.LENGTH_LONG) .show();
}
public void moveRight(View v) {
//call function from com.pauza.simpletetris.MyView <-- possible????
}
在xml布局中,您将android:onClick="moveLeft"
resp android:onClick="moveRight"
。这样您就不需要致电setOnClickListener
。