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

Textview的左边图片设置

时间:2014-09-29 21:27:11      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:public   图片   null   

tv_radaritem_name.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

isShow = !isShow;

if(isShow)

{

Drawable img = getResources().getDrawable(R.drawable.radar_imgpress);

img.setBounds(0, 0, img.getMinimumWidth(), img.getMinimumHeight());

tv_radaritem_name.setCompoundDrawables(null, null, img, null);

radar.setVisibility(View.VISIBLE);

liner_search.setVisibility(View.INVISIBLE);

isShow = true;

}else{

Drawable img = getResources().getDrawable(R.drawable.radar_imgnomal);

img.setBounds(0, 0, img.getMinimumWidth(), img.getMinimumHeight());

tv_radaritem_name.setCompoundDrawables(null, null, img, null);

radar.setVisibility(View.INVISIBLE);

liner_search.setVisibility(View.VISIBLE);

isShow = false;

}

}

});


本文出自 “android开发” 博客,谢绝转载!

Textview的左边图片设置

标签:public   图片   null   

原文地址:http://9238253.blog.51cto.com/9228253/1559464

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