如何引用多个按钮在Android中执行相同的操作

时间:2014-10-15 22:13:58

标签: java android for-loop

我想要做的是当我单独点击它们时,所有这些按钮都做同样的事情。我只是从C#.net转移,所以我不确定如何做到这一点。我有所有按钮android:onClick设置为" UserPush"但我不知道该怎么做。我也试图让它们在推动时禁用。

public class GameScreen extends Activity {

    Button A1,A2,A3,B1,B2,B3,C1,C2,C3;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.game_screen);

        A1 = (Button) findViewById(R.id.A1);
        A2 = (Button) findViewById(R.id.A2);
        A3 = (Button) findViewById(R.id.A3);
        B1 = (Button) findViewById(R.id.B1);
        B2 = (Button) findViewById(R.id.B2);
        B3 = (Button) findViewById(R.id.B3);
        C1 = (Button) findViewById(R.id.C1);
        C2 = (Button) findViewById(R.id.C2);
        C3 = (Button) findViewById(R.id.C3);
    }

    public void UserPush() {
        for(Button c : GameScreen.class) {
            c.Disable
        }
    }

}

1 个答案:

答案 0 :(得分:1)

如果我没弄错的话,你可以这样做:

public void UserPush(View v){
   ((Button)v).setEnabled(false);
}