Re: [android-developers] Drawing an EditText on top of an image

2010-08-14 Thread { Devdroid }
On 14 August 2010 06:26, Abhi abishe...@gmail.com wrote: Hi,   I am creating a custom view which has an image. The image can be of any type. What i want to achieve is that i want to draw an EditText control on top of the image so that the user can add some values to it. I am not sure how to

[android-developers] Drawing an EditText on top of an image

2010-08-13 Thread Abhi
Hi, I am creating a custom view which has an image. The image can be of any type. What i want to achieve is that i want to draw an EditText control on top of the image so that the user can add some values to it. I am not sure how to achieve this. The onDraw control will not allow me to draw any

Re: [android-developers] Drawing an EditText on top of an image

2010-08-13 Thread TreKing
On Fri, Aug 13, 2010 at 11:26 PM, Abhi abishe...@gmail.com wrote: What i want to achieve is that i want to draw an EditText control on top of the image so that the user can add some values to it. Just define a layout that has an EditText and and ImageView below it. You should not have to do