Is it possible to set the margin or padding for the image which we added with the android:drawableLeft?
|
|
||||
|
|
|
As cephus mentioned When laying out larger buttons you can use Here's an example button that uses padding to push the text and icon closer together than they would be by default:
|
|||||
|
|
TextView as an android:drawablePadding which should do the trick. |
|||
|
|
|
android:drawablePadding will only create a padding gap between the text and the drawable if the button is small enough to squish the 2 together. If your button is wider than the combined width (for drawableLeft/drawableRight) or height (for drawableTop/drawableBottom) then drawablePadding doesn't do anything. I'm struggling with this right now as well. My buttons are quite wide, and the icon is hanging on the left edge of the button and the text is centered in the middle. My only way to get around this for now has been to bake in a margin on the drawable by adding blank pixels to the left edge of the canvas with photoshop. Not ideal, and not really recommended either. But thats my stop-gap solution for now, short of rebuilding TextView/Button. |
|||
|
Instead of Button use LinearLayout with ImageView and TextView inside. In child items like ImageView and TextView use android:duplicateParentState="true". |
|||
|
|