我试图让一些文本出现在ImageView
. 但是使用这个 xml(如下),我看到它的文本楔入FrameLayout
. 我做错了什么?
<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>