I have an imageView with an image, over that image I want to place a text. How can I achieve that?

Thanks, A.

link|improve this question

76% accept rate
Have you seen my post? It really works guy =P – Alesqui Nov 30 '11 at 10:33
feedback

5 Answers

That's how I did it and it worked exactly as you asked for:

<ImageView
    android:id="@+id/myImageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/myImageSouce" />

<TextView
    android:id="@+id/myImageViewText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/myImageView"
    android:layout_alignTop="@+id/myImageView"
    android:layout_alignRight="@+id/myImageView"
    android:layout_alignBottom="@+id/myImageView"
    android:layout_margin="1dp"
    android:gravity="center"
    android:text="Hello"
    android:textColor="#000000" />
link|improve this answer
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.

link|improve this answer
1  
I came upon this method by accident. But it is very handy when you want to put some text over an imagebutton or an imageview. Example - put the current temperature over the image of the current conditions. – Phobos Mar 9 '11 at 8:26
feedback

You want to use a FrameLayout or a Merge layout to achieve this. Android dev guide has a great example of this here.

link|improve this answer
feedback

You could possibly

  • make a new class inherited from the Class ImageView and
  • override the Method onDraw. Call super.onDraw() in that method first and
  • then draw some Text you want to display.

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.

link|improve this answer
feedback

You can use a TextView and change its background to the image you want to use

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.