On button click I want to change the background image of the button but its not working for me.
What is the exact problem?
Help is always appreciated.
private Button seatdirnbtn;
seatdirnbtn.setOnClickListener(seathtlistner);
private View.OnClickListener seathtlistner = new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
switch(v.getId()){
case R.drawable.icon4:
seatdirnbtn.setBackgroundResource(R.drawable.icon4hlt);
break;
case R.drawable.icon4hlt:
seatdirnbtn.setBackgroundResource(R.drawable.icon4);
}
}

R.drawable.icon4hltorR.drawable.icon4? – ρяσѕρєя K Nov 22 '12 at 11:10getDrawable(seatdirnbtn)try it to get current background drawable id – ρяσѕρєя K Nov 22 '12 at 11:17