I have an imageView with an image, over that image I want to place a text. How can I achieve that?
Thanks, A.
feedback
|
|
That's how I did it and it worked exactly as you asked for:
| |||
|
feedback
|
|
There are many ways. You use RelativeView or AbsoluteView. With relative, you can have the image align with parent on the left side for example and also have the text align to the parent left too... then you can use margins and padding and gravity on the text view to get it lined where you want over the image. | |||||
feedback
|
|
You want to use a FrameLayout or a Merge layout to achieve this. Android dev guide has a great example of this here. | |||
|
feedback
|
|
You could possibly
if you do it that way, you can use this as a single Layout Component which makes it easier to layout together with other components. | |||
|
feedback
|
|
You can use a TextView and change its background to the image you want to use | ||||
|
feedback
|