I want to set icon on button on center place through programatically as the above diagram please any one help me...
Asked
Active
Viewed 4,963 times
-1
-
What does the documentation for the Button class say? – Simon Jul 11 '13 at 06:47
-
possible duplicate of [How to Change a Button's Icon Programmatically?](http://stackoverflow.com/questions/4250923/how-to-change-a-buttons-icon-programmatically) – Siddharth Lele Jul 11 '13 at 06:50
-
i dont know i am a new android – Satheesh Jul 11 '13 at 06:51
-
who is discourage my question if you dont know the answer just read and go away... – Satheesh Jul 11 '13 at 06:57
-
possible duplicate of [set image on a button in android?](http://stackoverflow.com/questions/3709009/set-image-on-a-button-in-android) – Chintan Rathod Jul 11 '13 at 06:58
-
i want to set icon in center position – Satheesh Jul 11 '13 at 07:04
-
Who is discourage my answer that person tell the answer now.Those who are all give the stupid link..first you understand what i want and then encourage or discourage my answer... – Satheesh Jul 11 '13 at 07:19
1 Answers
3
May This helps you..
Set background image for button which is in Drawable folder then use below code:
btn.setBackgroundResource(R.drawable.image);
OR
btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.image));
Or use: setCompoundDrawableWithIntrinsicBounds().
Look More Regarding setCompoundDrawableWithIntrinsicBounds()
in its documentation : CLICK HERE
Edit:
Try this way: setCompoundDrawableWithIntrinsicBounds(R.drawables.minus,0,0,0);
Add this line in XML: android:paddingLeft="100dp"

Bhavin Nattar
- 3,189
- 2
- 22
- 30
-
-
Read the documentation of `setCompoundDrawableWithIntrinsicBounds()` it will help you.. – Bhavin Nattar Jul 11 '13 at 07:11
-
i read it but which defined only set icon left,right,bottom and top only if you know please tell me... – Satheesh Jul 11 '13 at 07:12
-
You have to specify integer values in that method where you want to set the image.. – Bhavin Nattar Jul 11 '13 at 07:14
-
welcome satheesh.. and if my answer helped you then vote it buddy... – Bhavin Nattar Jul 11 '13 at 07:17
-
let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/33244/discussion-between-satheesh-and-bhavin-nattar) – Satheesh Jul 11 '13 at 07:29