web-dev-qa-db-ja.com

mapFragment.getMapAsync(this)-NullPointerException

Googleマップサービスの_com.google.Android.gms:play-services-maps:7.5.0_バージョンを使用しています。以下を呼び出そうとすると、Java.lang.NullPointerException: Attempt to invoke virtual method 'void com.google.Android.gms.maps.SupportMapFragment.getMapAsync(com.google.Android.gms.maps.OnMapReadyCallback)' on a null object referenceが返されます。

_@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    SupportMapFragment mapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this); //error

    return inflater.inflate(R.layout.fragment_example_map, container, false);
}
_

fragment_example_map.xmlファイル:

_<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"
    tools:context="app.ExampleMap">

    <fragment xmlns:Android="http://schemas.Android.com/apk/res/Android"
        Android:name="com.google.Android.gms.maps.SupportMapFragment"
        Android:id="@+id/map"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"/>
</FrameLayout>
_
29
Neutrino

フラグメントが存在する前に見つけようとしています。フラグメントを含むレイアウトが_fragment_example_map.xml_であることを示します。ただし、そのレイアウトファイルを展開する前に、マップフラグメントを見つけようとしています。これは機能しません。

さらに、そのフラグメントのonCreateView()メソッドで、別のフラグメント内からマップフラグメントを取得しようとしているように見えます。ここでフラグメントをネストしている理由はわかりません。明らかなメリットが得られないため、コードがより複雑で壊れやすくなるようです。

10
CommonsWare

フラグメントを含むマップでの私のコメント、最初にあなたはそれから何かを呼び出すのであなたのビューを改めるべきです、これが私が最初に私のビューを膨らませる理由です
View view = inflater.inflate(R.layout.activity_maps, null, false);

this.getChildFragmentManager()の代わりに2番目の子フラグメントマネージャーgetActivity().getSupportFragmentManager()を呼び出す

地図を表示する完全な例を次に示します

import Android.os.Bundle;
import Android.support.annotation.Nullable;
import Android.support.v4.app.Fragment;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.view.ViewGroup;

import com.google.Android.gms.maps.CameraUpdateFactory;
import com.google.Android.gms.maps.GoogleMap;
import com.google.Android.gms.maps.OnMapReadyCallback;
import com.google.Android.gms.maps.SupportMapFragment;
import com.google.Android.gms.maps.model.LatLng;
import com.google.Android.gms.maps.model.MarkerOptions;

public class ClinicFragment extends Fragment implements OnMapReadyCallback {

    private GoogleMap mMap;

    public static ClinicFragment newInstance() {
        ClinicFragment fragment = new ClinicFragment();
        return fragment;
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.activity_maps, null, false);

        SupportMapFragment mapFragment = (SupportMapFragment) this.getChildFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);

        return view;
    }


    /**
     * Manipulates the map once available.
     * This callback is triggered when the map is ready to be used.
     * This is where we can add markers or lines, add listeners or move the camera. In this case,
     * we just add a marker near Sydney, Australia.
     * If Google Play services is not installed on the device, the user will be prompted to install
     * it inside the SupportMapFragment. This method will only be triggered once the user has
     * installed Google Play services and returned to the app.
     */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        // Add a marker in Sydney and move the camera
        LatLng sydney = new LatLng(-34, 151);
        mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
        mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
    }
}

必要な許可

<permission
    Android:name="your.package.name.permission.MAPS_RECEIVE"
    Android:protectionLevel="signature" />
<uses-permission Android:name="your.package.name.permission.MAPS_RECEIVE"/>

<uses-permission Android:name="Android.permission.INTERNET" />
<uses-permission Android:name="Android.permission.ACCESS_NETWORK_STATE" />
<uses-permission Android:name="Android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission Android:name="com.google.Android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission Android:name="Android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission Android:name="Android.permission.ACCESS_FINE_LOCATION" />

プラス機能要素

<uses-feature
    Android:glEsVersion="0x00020000"
    Android:required="true"/>

ほとんどのインポートGoogleマップキー

<meta-data
    Android:name="com.google.Android.maps.v2.API_KEY"
    Android:value="your_key_here" />

Update直面した場合、このメタデータを追加します クラスフラグメントの膨張エラー

<meta-data 
      Android:name="com.google.Android.geo.API_KEY"  
      Android:value="your_key_here" />

メインフェストの夏

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
    package="your.package.name" >
// permission here

 <application
        Android:name=".Activities.MyApplication"
        Android:allowBackup="true"
        Android:icon="@mipmap/ic_launcher"
        Android:label="@string/app_name"
        Android:theme="@style/AppTheme" >

    // feature element 
    // maps key

  </application>

</manifest>

activity_maps.xml

<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.imaadv.leaynik.ClinicFragment" />
118
Mina Fawzy

フラグメントのgetChildFragmentManager()の代わりにgetActivity().getSupportFragmentManager()を使用します。

好む:

SupportMapFragment mapFragment = (SupportMapFragment)getChildFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this); 
20
Arun kumar

フラグメントでAndroid:name="com.google.Android.gms.maps.MapFragment"を使用している場合、コードを次のように変更します。

MapFragment mapFragment1 = (MapFragment)getFragmentManager().findFragmentById(R.id.map);
        mapFragment1.getMapAsync(this);

ただし、フラグメントでAndroid:name="com.google.Android.gms.maps.SupportMapFragment"を使用している場合は、次のコードを使用します。

SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
9
Nagendra

これは私のために働く:

SupportMapFragment mapFragment = (SupportMapFragment)getChildFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this); 
5
Rayan Teixeira

同じ問題に直面した。フラグメント内でMapフラグメントを使用しているため、getChildFragmentManager()またはgetActivity().getFragmentManager()の代わりにgetFragmentManager()を使用します。

4
Devenom

SupportMapFragmentを使用し、XMLでMapFragment name属性を定義しました

Android:name="com.google.Android.gms.maps.MapFragment"

そのため、コードをSupportMapFragmentに置き換えて、正常に動作し始めました

Android:name="com.google.Android.gms.maps.SupportMapFragment"
2
Naveed Ahmad

AndroidバージョンまたはSDKバージョン5以上ではgetChildFragmentManager()を使用し、以下ではgetFragmentManager()を使用します。

2
jan_013069

簡単な答えは、マップフラグメントを追加する場合です。

<fragment 
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    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:layout="@layout/fragment_home" />

フラグメントに:このレイアウトのように

 <Android.support.constraint.ConstraintLayout 
        xmlns:Android="http://schemas.Android.com/apk/res/Android"
        xmlns:app="http://schemas.Android.com/apk/res-auto"
        xmlns:tools="http://schemas.Android.com/tools"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
tools:context="com.example.Android.earthreport.fragments.HomeFragment"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="81dp">

     <fragment 
xmlns:Android="http://schemas.Android.com/apk/res/Android"
            xmlns:tools="http://schemas.Android.com/tools"
            Android:id="@+id/map"
            Android:name="com.google.Android.gms.maps.SupportMapFragment"
            Android:layout_width="0dp"
            Android:layout_height="0dp"
            app:layout_constraintBottom_toBottomOf="@id/guideline4"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="@id/guideline3"
            tools:layout="@layout/fragment_home" />
        </Android.support.constraint.ConstraintLayout>

次に、このようなフラグメントを膨らませた後にこの行を追加する必要があります

 @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        // Find a reference to the {@link ListView} in the layout
        // Inflate the layout for this fragment
        // To get the referance we don't have findviewbyId 
        // method in fragment so we use view
        View view = inflater.inflate(R.layout.fragment_home, container, false);


          SupportMapFragment mapFragment = (SupportMapFragment) 
                  this.getChildFragmentManager()
                  .findFragmentById(R.id.map)
          mapFragment.getMapAsync(this);
.....

Into your Activity:このレイアウトのように

<?xml version="1.0" encoding="utf-8"?>
<Android.support.constraint.ConstraintLayout
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    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:tools="http://schemas.Android.com/tools"
        Android:id="@+id/map"
        Android:name="com.google.Android.gms.maps.SupportMapFragment"
        Android:layout_width="0dp"
        Android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:context="package com.example.Android.map" />

</Android.support.constraint.ConstraintLayout>

次に、このコードのチャンクを追加する必要があります。

  @Override
        protected void onCreate(@Nullable Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
        setContentView(R.layout.map_activity);
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
      }

間違っている場合は修正してください。ただし、レイアウトを拡張した後は常にマップフラグメントを追加するか、コンテンツビューを設定してください。

2
badarshahzad

フラグメント内でマップを使用している場合、getFragmentManager()が機能しない場合があります。 getChildFragmentManager()を使用する必要があります。

SupportMapFragment mapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.fragment_track_order_map_fragment);
mapFragment.getMapAsync(this);

以下は私のXML宣言です

<fragment
    Android:id="@+id/fragment_track_order_map_fragment"
    Android:name="com.google.Android.gms.maps.SupportMapFragment"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent" />

また、フラグメントにOnMapReadyCallbackを実装する必要があります。

2

これを使って。

GoogleMap gooleMap;

     ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMapAsync(new OnMapReadyCallback() {
        @Override
        public void onMapReady(GoogleMap map) {
            googleMap = map;
           }
1
Harsh Bhavsar

側面フラグメントでマップフラグメントを使用する場合は、これを使用します

SupportMapFragment mMapFragment = SupportMapFragment.newInstance();
FragmentTransaction fragmentTransaction =
getChildFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.flMap, mMapFragment);
fragmentTransaction.commit();
mMapFragment.getMapAsync(this);
0
Tarun Umath

アクティビティのonResumesupportMapFragment.getMapAsync(this);を呼び出すだけです

0
fanjavaid

このコードを置き換えます

<fragment 
    Android:name="com.google.Android.gms.maps.MapFragment"
    Android:id="@+id/map"
    Android:layout_width="fill_parent"
    Android:layout_height="400dp" />

そして

if (googleMap == null) {
        mapFrag =  (MapFragment)getFragmentManager().findFragmentById(R.id.map);
        mapFrag.getMapAsync(this);
    }else{
        GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);

    }
0
Mujtaba Zaidi

OnCreateでこのコードを試してください

if (mapFragment != null) {
    mapFragment.getMapAsync(this);
}
0
Darksymphony