我試圖讓一些文本出現在ImageView
的中心。但是使用這個xml(下面)我看到它的文字楔在FrameLayout
的左上角。我做錯了什麼?如何獲得以ImageView爲中心的文本視圖
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
>
<ImageView
android:id="@+id/levbut"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:src="@drawable/starbut"
/>
<TextView
android:id="@+id/tvtest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello"
/>
</FrameLayout>
設置android:gravity =「center」的textView。 –
沒有什麼區別:-( – Mick