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);
热点内容