首页 > 代码库 > 如何在Android中为TextView动态设置drawableLeft等
如何在Android中为TextView动态设置drawableLeft等
如何在Android中为TextView动态设置drawableLeft等
两种方式:
方式1:手动设置固有边界
1 Drawable drawable = getResources().getDrawable(resId);2 //注意查看方法TextView.setCompoundDrawables(Drawable, Drawable, Drawable, Drawable)3 //的注释,要求设置的drawable必须已经通过Drawable.setBounds方法设置过边界参数4 //所以,此种方式下该行必不可少5 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());6 setCompoundDrawables(drawable, null, null, null);
方式2:自动设置固有边界
1 setCompoundDrawablesWithIntrinsicBounds(resId, 0, 0, 0);2 //setCompoundDrawablesWithIntrinsicBounds(getResources().getDrawable(resId), null, null, null);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。