私はアンドロイドの学習段階です。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>