<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<ImageView
android:layout_width="433dp"
android:layout_height="210dp"
android:layout_marginTop="25dp"
android:id="@+id/imageView"
android:scaleType="fitXY"
android:contentDescription="@string/image_description" />
<TextView
android:id="@+id/item_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:text="@string/list_number_placeholder"
android:textColor="@color/bar_separator_color"
android:layout_centerInParent="true"
android:textSize="50dp"
android:gravity="center"
android:layout_marginLeft="85dp"
/>
我有一個問題,我不能讓我的imageview上的文字,我認爲它的東西與圖層。請幫我..Android studio XML textview上一幅圖像
IM BTW在Android Studio中XD初學者
使用RelativeLayout而不是LinearLayout。它會疊加元素,你可以按你的意願訂購 –