ANDROID - 如何在图像上显示文字?

时间:2011-02-16 16:59:46

标签: android android-layout android-image

好的......所以这就是场景..从头开始,我想要显示三颗星(我有一个我想要使用的图像),居中。我想在每个星星上张贴一个不同的单词。当然,我不希望它硬编码,但一旦我能够正确地进行布局,剩下的就很容易了。有人可以帮忙吗?我将不胜感激。

3 个答案:

答案 0 :(得分:3)

如果您只想在图像上叠加文本,只需将ImageView包装在FrameLayout中,然后在ImageView之后定义TextView。它将分层顶部。对于你在初始问题中提出的建议,Reuben和Yahel的答案将是更好的方法。

示例:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/my_image"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Text on Top!"
        />
</FrameLayout>

答案 1 :(得分:0)

只需使用每个 View所具有的“背景”属性(包括TextView)将星标放入。作业完成。

答案 2 :(得分:0)

只需使用TextViews的android:background属性。