Reputation: 53
How can I add a "drawable left" icon to a button object?
I mean something like this:
Button button = new Button();
button.setDrawableLeft(R.drawable...);
Upvotes: 5
Views: 2481
Reputation: 80330
Use Button.setCompoundDrawablesWithIntrinsicBounds(..)
which relates to android:drawableLeft attribute.
Upvotes: 6