/ / Nemôžem nájsť MapFragment v rozložení, vracia null - java, android, google-mapy

Nemôže nájsť MapFragment v rozložení, vracia null - java, Android, google-mapy

Ahoj, mám nasledujúce rozloženie v aplikácii, ktorá má MapFragment, načíta mapu, ale keď sa pokúsim získať jej referenciu, vráti hodnotu null v kóde.

Hlavný súbor rozloženia

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout    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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

Tu je súbor rozloženia app_bar_main

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout   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"
android:fitsSystemWindows="true"
tools:context=".activities.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

</android.support.design.widget.CoordinatorLayout>

a layout_main layout, ktorý má mapové usporiadanie

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"

app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activities.MainActivity"
tools:showIn="@layout/app_bar_main">

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.google.android.gms.maps.MapFragment"
android:id="@+id/mapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</RelativeLayout>

Kód, ktorý používam na získanie referencie o mapovaní, je umiestnený pod onCreate aktivity

 FragmentManager manager = getSupportFragmentManager();
SupportMapFragment mapFragment = (SupportMapFragment) manager
.findFragmentById(R.id.mapFragment);
mapFragment.getMapAsync(this);

Nie ste si istí, prečo jeho pád

odpovede:

1 pre odpoveď č. 1

zmena

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

na

android:name="com.google.android.gms.maps.SupportMapFragment"

skúste tento xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activities.MainActivity"
tools:showIn="@layout/app_bar_main">

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/mapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</RelativeLayout>

Pridáte MapFragment v xml a dostanete SupportMapFragment do Java, ktorá je vo vašom kóde výnimka.


1 pre odpoveď č. 2

nahradiť:

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

s:

android:name="com.google.android.gms.maps.SupportMapFragment"

Vo svojom Java kóde sa snažíte použiť SupportMapFragment a backport fragmentu. To je v poriadku, ale potom musíte použiť SupportMapFragment aj v rozložení XML.

Nie ste si istí, prečo jeho pád

V budúcnosti zaúčtujte sledovanie zásobníka Java spolu s kódom v otázke.