android點擊背景
發布時間: 2023-10-11 12:00:09
Ⅰ android 按鈕設置點擊更換imagebutton背景
button.setBackgroundResource(R.drawable.beijing1);
上面是改變按鈕背景的代碼
可以做兩組圖片,分別為button1的選中和為選擇狀態、button2的選中和為選擇狀態,讓後再button1和button2的點擊事件中,對兩個按鈕的背景進行改變,就可以了
Ⅱ android button 點擊後如何更換背景,然後點擊其他按鈕時該按鈕背景換回來
1、要更換背景的按鈕,id是myself。其他按鈕(以一個按鈕未代表)
java">ButtonmyButton=(Button)findViewById(R.id.myself);//要改變背景的按鈕
ButtonotherButton=(Button)findViewById(R.id.xxxx);//其他按鈕
2、定義Listener,如果id是myself,則改變為其他背景,否則變回來
OnClickListenercl=newOnClickListener(){
@Override
publicvoidonClick(Viewv){
if(v.getId()==R.id.myself){//如果是myself按鈕,則設置一種背景
myButton.setBackgroundResource(R.drawable.xxxx1);
}else{//如果不是myself按鈕,則設置回來。
myButton.setBackgroundResource(R.drawable.xxxx2);
}
}
}
3、按鈕設置監聽
myButton.setOnClickListener(cl);
otherButton.setOnClickListener(cl);
熱點內容