我試圖在全屏圖像上顯示按鈕。 I tried to use RelativeLayout如本問題所示,但我看不到按鈕。無法看到全屏按鈕Imageview
有人能告訴我爲什麼這段代碼不工作嗎?
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/pitchImageView"
android:src="@drawable/gaa_pitch"
android:scaleType="centerCrop"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start"
android:id="@+id/stopwatchButton"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
道歉,如果這符合資格重複的問題。
編輯: 該活動的屏幕截圖。
你可以發佈它的屏幕截圖? –