我正处于android的学习阶段。我想在 ImageView 上设置 TextView。我不明白。我会很感激的。这是我的 XML 代码。
<LinearLayout 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"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="380dp"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:background="@drawable/wf" />
<TextView
// what should i add here so that it can be visible on image view//
/>
</LinearLayout>