1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| final Button button1 = (Button) findViewById(R.id.Button01);
final Button button2 = (Button) findViewById(R.id.Button02);
final Button button3 = (Button) findViewById(R.id.Button03);
final Button button4 = (Button) findViewById(R.id.Button04);
button1.setOnClickListener(new Button.OnClickListener(){
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast toast = Toast.makeText(getApplicationContext(),"Test", Toast.LENGTH_LONG);
toast.show();
}
}); |