I want to assign an image to one of the buttons in my activity?
How can i achieve that?? And for that where shall I place image.jpeg or any other image file?
|
|
|
Use ImageButton. Put your image in resources, and use it like this:
|
|||
|
|
|
its pretty old question but seems like you didn't get best solution on this post because still haven't accepted any answer.
code will be like this
for this we need to put button image in Drawable folder named "square_1_up.png" output Button will be like
|
|||
|
|
Save these file under res/drawable/button.xml
Suppose your main layout file main.xml which is under res/layout/main.xml
|
|||
|
|
|
Make sure you use ImageButton in your layout not Button. In your activity:
|
|||
|
|