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> 

這裏是一個screenshot of the map

+0

使用Android Studio的Layout Inspector查看按鈕在哪裏清盤。 – CommonsWare

+0

在父親的RelativeLayout上,嘗試將layout_width更改爲match_parent – Artem

+0

您的Fragment正在消耗整個屏幕。該按鈕因此被推掉。如果你想要的話,先把按鈕放在「片段上」,我相信 –

回答

0

ü可以嘗試這樣

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 


<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="wrap_content" 
      android:layout_weight="1" 
tools:context="com.henriquevoni.petgo.MapFragment"/> 

<Button 
    android:id="@+id/button7" 
    android:layout_width="100dp" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal|bottom" 
    android:layout_marginBottom="39dp" 
    android:layout_marginLeft="8dp" 
    android:background="#359c5e" 
    android:text="Next" 
    android:textColor="#ffffff" 

    /> 


</FrameLayout> 

或U也可以這樣做

如果這是你想...只需在Fragment中添加按鈕。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 


<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="wrap_content" 
      android:layout_weight="1" 
tools:context="com.henriquevoni.petgo.MapFragment"> 

<Button 
    android:id="@+id/button7" 
    android:layout_width="100dp" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal|bottom" 
    android:layout_marginBottom="39dp" 
    android:layout_marginLeft="8dp" 
    android:background="#359c5e" 
    android:text="Next" 
    android:textColor="#ffffff" 

    /> 
</fragment> 

</FrameLayout>