Вставить текст в изображение - PullRequest
0 голосов
/ 28 августа 2018

Как вставить TextView в изображение, подобное изображенному на фотографии. введите описание изображения здесь

1 Ответ

0 голосов
/ 04 сентября 2018

Вы можете попробовать 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

...