码迷,mamicode.com
首页 > 其他好文 > 详细

使用ToggleButton实现图片更换

时间:2016-04-11 14:00:43      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

1:添加两个灯泡的图片在drawable中,取名为off/on


 

2:xml文件:

<ToggleButton
android:id="@+id/tbtn"
android:textOn="开"
android:textOff="关"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/off"/>


 

3:java文件:

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//初始化控件:
setContentView(R.layout.activity_main);
tbtn=(ToggleButton) findViewById(R.id.tbtn);
img=(ImageView) findViewById(R.id.img);
//设置监听器:
tbtn.setOnCheckedChangeListener( this);

public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
//当btnt点击时,当前方法会执行,buttonView:代表被点击的控件的本身 ,isChecked代表点击控件的状态 ,当点击按钮时,更换img背景
img.setBackgroundResource(isChecked?R.drawable.on,R.drawable.off);//如果点击了,则更换图片,三目运算符
}


 

使用ToggleButton实现图片更换

标签:

原文地址:http://www.cnblogs.com/icessun/p/5377874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!