在图片中插入文字

时间:2018-08-28 14:05:14

标签: android rating

如何在图像中插入TextView,就像照片中的一样。 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试这样定义FrameLayout:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
android:orientation="vertical">


    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="200dp"
        android:contentDescription="@string/some_pic_desc"
        android:src="@drawable/some_pic" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="175dp"
        android:background="@color/wallet_link_text_light"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:text="TOP STORIES"
        android:textColor="@android:color/white"
        android:textSize="30dp" />

</FrameLayout>

应该在哪里定义资源。由于问题并非如此,因此我省略了底部菜单和圆角,但是您可以尝试read