Есть массив из кнопок:
К примеру
private final int COUNT = 9;
private Button[] btn= new Button[COUNT];
btn[0] = (Button) findViewById(R.id.button1);
btn[1] = (Button) findViewById(R.id.button2);
btn[2] = (Button) findViewById(R.id.button3);
btn[3] = (Button) findViewById(R.id.button4);
btn[4] = (Button) findViewById(R.id.button5);
btn[5] = (Button) findViewById(R.id.button6);
btn[6] = (Button) findViewById(R.id.button7);
btn[7] = (Button) findViewById(R.id.button8);
btn[8] = (Button) findViewById(R.id.button9);
Как можно всем кнопкам btn[] присвоить значение setEnabled(false); ?