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

Android:Textview 通过代码设置 Drawable

时间:2016-11-22 12:54:23      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:link   lld   resources   显示   调用   public   源码   bottom   textview   

解决方案

public void  setCompoundDrawables  (Drawable left, Drawable top, Drawable right, Drawable bottom);  

类似与在 XML 中

android:drawableLeft="@drawable/icon"  

 

使用 TextView 直接调用 setCompoundDrawables() 就可以实现添加 drawable,但是添加完成以后无法显示,查看源码,发现有这么一句话

The Drawables must already have had {@link Drawable#setBounds} called.

1 Drawable drawable = context.getResources().getDrawable(R.drawable
2                         .todo_date_alert_2x);
3 drawable.setBounds(0,0,drawable.getMinimumWidth(),drawable.getMinimumHeight());
4 holder.todoDataALLDate.setCompoundDrawables(drawable, null, null, null);

 

Android:Textview 通过代码设置 Drawable

标签:link   lld   resources   显示   调用   public   源码   bottom   textview   

原文地址:http://www.cnblogs.com/liyiran/p/6088437.html

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