0

xmlページにフローティングアクションボタンを追加したいのですが、これを解決するのに役立ちます。フローティングアクションボタンエラーを追加する必要があります。androidのフラグメントページに複数のルートタグがあります

<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.findme.vysystems.googlemaps1.MapsActivity" 

     /> 

    <android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom|end" 
    android:layout_margin="@dimen/fab_margin" 
    android:src="@android:drawable/ic_dialog_email" /> 

答えて

2

この

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

      <fragment 
      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.findme.vysystems.googlemaps1.MapsActivity" /> 

      <android.support.design.widget.FloatingActionButton 
      android:id="@+id/fab" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="bottom|end" 
      android:layout_margin="@dimen/fab_margin" 
      android:src="@android:drawable/ic_dialog_email" /> 

    </LinearLayout> 
+0

おかげで今すぐチェックします試してみてください。 – VyTcdc

+0

アプリクラッシュあり:エラー.vysystems.googlemaps1、PID:12883 java.lang.NullPointerException:NULLオブジェクト参照で仮想メソッド 'void com.google.android.gms.maps.GoogleMap.clear()'を呼び出そうとしました – VyTcdc

+0

あなたにJavaコードを投稿.... – rafsanahmad007

関連する問題