如何将文本放在 ImageView 上

How to put text over ImageView

目前我有一个充满图像的网格布局,但我想在上面显示一些文本,随着时间的推移,文本会 change/update。最好的选择是什么?

XML 代码看起来像这样:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<GridLayout
    android:id="@+id/GridLayout1"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:columnCount="3"
    android:rowCount="11"
    android:orientation="horizontal"
    tools:context=".MainActivity2" >

<Button
    android:id="@+id/my_button1"
    android:layout_height="wrap_content"
    android:layout_columnSpan="3"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    android:layout_marginTop="700dp"
    android:layout_marginBottom="40dp"
    android:text="CLOSE CONNECTION" />

<ImageView
    android:id="@+id/my_img1"
    android:layout_width="120dp"
    android:layout_height="100dp"
    android:layout_margin="5dp"
    android:src="@drawable/ic_svgimg_img"/>

<ImageView
    android:id="@+id/my_img2"
    android:layout_width="120dp"
    android:layout_height="100dp"
    android:layout_margin="5dp"
    android:src="@drawable/ic_svgimg_img"/>
.
.
.

为此,您可以使用 FrameLayout。尝试这样的事情

<FrameLayout>
  <ImageView />
  <TextView />
</FrameLayout>

FrameLayout会重叠视图,你可以玩重力调整定位。如果您需要更复杂的对齐方式,您可以使用更复杂的布局,例如 RelativeLayout 或 ConstraintLayout。

根据您的设计创建一个包含 TextView 和 ImageView 的自定义布局,并在您的 xml 文件中使用自定义布局,并编写一些方法以编程方式更新。

您可以单独创建 gridView 项,在 gridView 中使用这些项,并使用 constraintLayout,您可以像这样将文本放在图像上:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView
        android:id="@+id/button3"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:scaleType="fitXY"
        android:background="@color/colorAccent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHeight_percent="0.2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:text="I am the text over the image"
        android:textSize="25sp"
        app:layout_constraintBottom_toBottomOf="@+id/button3"
        app:layout_constraintEnd_toEndOf="@+id/button3"
        app:layout_constraintStart_toStartOf="@+id/button3" />

</androidx.constraintlayout.widget.ConstraintLayout>

它看起来像这样: