Calling setCompoundDrawables() doesn't display the Compound Drawable

android, android-drawable, android-layout

Solution

I needed to be using `setCompoundDrawablesWithIntrinsicBounds`.

Problem

After I call the `setCompoundDrawables` method, the compound Drawable is not shown.. ``` Drawable myDrawable = getResources().getDrawable(R.drawable.btn); btn.setCompoundDrawables(myDrawable, null, null, null); ``` Any thoughts?

Original source

Related problems