I'm trying to create a EditText box, like below which has a image on the left hand side and editable text region on the right hand side, but I don't seem to have the slightest clue how to do this in android :| I can find various solutions for putting an image in the background (so the text can overwrite it) and also how to make the rounded corners, but I cannot find a way to put the image on the left and the text on the right.

Any pointers would be very much appreciated!

EditText with background image

link|improve this question

feedback

2 Answers

Make a background graphic including the image and the border with the rounded corners. Make an EditText with this graphic as background and adjust the EditText with the android:paddingLeft/Top/Right/Bottom properties.

link|improve this answer
This seem a bit of a hack though :| using one large image for the text box, if the text box needs re-sized or on different density screens it may be a bit hit or miss? Is there a more stable way to do this? – John Mitchell Jan 2 at 4:27
I don´t think, it´s a hack, because resizing images is normal in android due to different screen resolutions. If you define the padding in dip (and not in px) this solution will stand different screen resolutions. – CodeDownZero Jan 2 at 8:05
feedback
up vote 0 down vote accepted

After much researching the best way that I could find was to make use of drawable left right top and bottom, along with a drawable padding. This would mean that the button scales easily. @CodeDownZero 's suggestion is also valid. I think its a matter of personal preference in this case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.