2
フラグメント内にGoogleマップを取得しようとしていますが、NullPointerExceptionが発生しています。私は似たような質問のために他の答えを読んだが、彼らは私を助けなかった。フラグメント内のSupportMapFragmentを持つNullPointerException
HomeFragment:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_home, container, false);
SupportMapFragment mapFragment = (SupportMapFragment) getFragmentManager()
.findFragmentById(R.id.ftMap);
mapFragment.getMapAsync(this);
return view;
}
fragment_home.xml:
<fragment
android:id="@+id/ftMap"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_centerInParent="true"
android:layout_margin="8dp" />
すべての作品!どうもありがとうございました! – ADR