studio setup mapview google example ejemplo android android-mapview google-maps-android-api-2

setup - mapview android ejemplo



Android MapView getMap() devuelve null (3)

MapView getMap() puede devolver nulo. Sé que este es un comportamiento previsto por Google.

¿Puede alguien proporcionar una descripción definitiva de cuándo y en qué circunstancias el método getMap() devuelve un valor nulo?

Sé que si los Servicios de Google no están disponibles en el dispositivo dado, getMap() devolverá el valor nulo. Esta eventualidad está relativamente bien documentada. Me preocupa más el vago caso en el que, incluso cuando los Servicios de Google están instalados en un dispositivo, getMap() aún puede devolver un valor nulo.

Mi suposición hasta este punto es que hay cierta inicialización del sistema de mapas subyacente, durante el cual su código podría ejecutarse y obtener un mapa nulo.

¿Estoy en lo cierto en mi suposición?

¿Hay algún lugar en particular en el Ciclo de vida de la Actividad o Fragmento donde podamos obtener un GoogleMap no nulo (si asumimos que los Servicios de Google están instalados)?

Mi objetivo al hacer esta pregunta es evitar una letanía de if(mapView.getMap() != null) en mi código. Además, esta pregunta parece surgir regularmente aquí en StackOverflow y me gustaría ver si podemos descubrir la verdad detrás de lo que está sucediendo exactamente con MapView y getMap()


Google tiene una forma más conveniente de obtener el mapa utilizando el siguiente método, ya que puede depender de un dispositivo a otro para que el mapa esté listo. Utilice el siguiente método para obtener el mapa cuando esté listo.

myMapFragment.getMapAsync(new OnMapReadyCallback) { @Override public void onMapReady(GoogleMap googleMap) { myMap = googleMap; } });


Tengo un Android Tab3 con Android 4.2.2. Todo lo que tenía que hacer es actualizar los mapas de Google e hizo el truco.


Escenarios manejados por Google Si el apk de Google Play no está instalado, obtendrás un nulo. Pero está incorporado de alguna manera para descargarlo de la tienda de juegos. Pero es posible que la tienda de juegos no esté instalada, por lo que se obtiene un mapa nulo. Si Internet no está disponible y PlayStore está instalado, pero los servicios de Google Play no son nulos porque no se pueden instalar los servicios de Google Play. Pero la codificación de estos senarios está hecha para ti.

Escenarios manejados por su código. Esto es para lo que tienes que codificar. Si se desvía del patrón descrito en los ejemplos de mapas, obtendrá un mapa nulo. Cada muestra lo hace de la misma manera. Esto es así si la primera llamada en onCreate falla, todavía hay una segunda oportunidad para obtener el mapa en onResume. Su solución es llamar a getMap() solo en un lugar y guardar el objeto de mapa que se devuelve. Siga el patrón básico que utilizan las muestras del mapa. En los métodos onCreate y onResume , usted llama a setupmapifneeded que setupmap a setupmap cuando el objeto del mapa no es nulo.

Aquí está la primera muestra de mapa.

/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.gosylvester.testapp; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; import android.os.Bundle; import android.support.v4.app.FragmentActivity; /** * This shows how to create a simple activity with a map and a marker on the map. * <p> * Notice how we deal with the possibility that the Google Play services APK is not * installed/enabled/updated on a user''s device. */ public class BasicMapActivity extends FragmentActivity { /** * Note that this may be null if the Google Play services APK is not available. */ private GoogleMap mMap; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.basic_demo); setUpMapIfNeeded(); } @Override protected void onResume() { super.onResume(); setUpMapIfNeeded(); } /** * Sets up the map if it is possible to do so (i.e., the Google Play services APK is correctly * installed) and the map has not already been instantiated.. This will ensure that we only ever * call {@link #setUpMap()} once when {@link #mMap} is not null. * <p> * If it isn''t installed {@link SupportMapFragment} (and * {@link com.google.android.gms.maps.MapView MapView}) will show a prompt for the user to * install/update the Google Play services APK on their device. * <p> * A user can return to this FragmentActivity after following the prompt and correctly * installing/updating/enabling the Google Play services. Since the FragmentActivity may not have been * completely destroyed during this process (it is likely that it would only be stopped or * paused), {@link #onCreate(Bundle)} may not be called again so we should call this method in * {@link #onResume()} to guarantee that it will be called. */ private void setUpMapIfNeeded() { // Do a null check to confirm that we have not already instantiated the map. if (mMap == null) { // Try to obtain the map from the SupportMapFragment. mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)) .getMap(); // Check if we were successful in obtaining the map. if (mMap != null) { setUpMap(); } } } /** * This is where we can add markers or lines, add listeners or move the camera. In this case, we * just add a marker near Africa. * <p> * This should only be called once and when we are sure that {@link #mMap} is not null. */ private void setUpMap() { mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker")); } }