码迷,mamicode.com
首页 > 移动开发 > 详细

【Android】动态设置android:drawableLeft|Right|Top|Bottom

时间:2014-06-08 01:17:39      阅读:430      评论:0      收藏:0      [点我收藏+]

标签:android   c   style   class   blog   code   

Android中有时需动态设置控件四周的drawble图片,这个时候就需要调用 setCompoundDrawables(left, top, right, bottom),四个参数类型都是drawable
 
Button继承TextView,所以可以采用相同的设置方法
 
方法一.XML方式
 
bubuko.com,布布扣
<TextView
        android:id="@+id/bookTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawableLeft="@drawable/checkmark"
        android:drawableRight="@drawable/checkmark"
        android:drawableTop="@drawable/checkmark"
        android:gravity="center_vertical"
        android:textStyle="bold"
        android:textSize="20dip"
        android:maxLines="1"
        android:ellipsize="end"/>
bubuko.com,布布扣

 

 

 
方法二.JAVA代码
 
bubuko.com,布布扣
Drawable img_on, img_off;
Resources res = getResources();
img_off = res.getDrawable(R.drawable.btn_strip_mark_off);
//调用setCompoundDrawables时,必须调用Drawable.setBounds()方法,否则图片不显示
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
btn.setCompoundDrawables(img_off, null, null, null); //设置左图标
bubuko.com,布布扣

 

【Android】动态设置android:drawableLeft|Right|Top|Bottom,布布扣,bubuko.com

【Android】动态设置android:drawableLeft|Right|Top|Bottom

标签:android   c   style   class   blog   code   

原文地址:http://www.cnblogs.com/niray/p/3774506.html

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