Setting compound drawable size

In many cases, we need to have some image next to the text. We can do that using designer view by setting e.q. drawableLeft text field property:

But this approach is sometimes not the best. We don’t have full control over the drawable position and size. Of course, there is some way of changing image size like scaling the entire view, but sometimes it may make matters even worse.

An alternative way of doing that is setting compound drawable programmatically. The code below shows how to do it.



final float density = getResource().getDisplayMetrics().density;
final Drawable drawable = getResources().getDrawable(R.drawable.some_drawable);
final int width = Math.round(12 * density);
final int height = Math.round(12 * density);
drawable.setBounds(0, 0, width, height);


Enter fullscreen mode Exit fullscreen mode



view.setCompoundDrawables(drawable, null, null, null);


Enter fullscreen mode Exit fullscreen mode

原文链接:Setting compound drawable size

© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容