0
我試圖從其他問題中解答同樣問題的很多答案,但是他們都沒有幫助我。無法在Android地圖上疊加按鈕
我只需要在Google Map片段上放一個按鈕。
下面的代碼:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#ffffff">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.henriquevoni.petgo.MapFragment"/>
<Button
android:id="@+id/button7"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="end|center_horizontal"
android:layout_marginBottom="39dp"
android:layout_marginLeft="8dp"
android:background="#359c5e"
android:text="Next"
android:textColor="#ffffff"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
使用Android Studio的Layout Inspector查看按鈕在哪裏清盤。 – CommonsWare
在父親的RelativeLayout上,嘗試將layout_width更改爲match_parent – Artem
您的Fragment正在消耗整個屏幕。該按鈕因此被推掉。如果你想要的話,先把按鈕放在「片段上」,我相信 –