Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • google map lite mode in mapview is not working with marshmallow

    • 1
    • 0
    • 0
    • 1
    • 0
    • 0
    • 0
    • 371
    Answer it

    => I'm using following MapView in my layout:-

        ------------------------------------------------------------

    1. <com.google.android.gms.maps.MapView
    2. android:id="@+id/map"
    3. class="com.google.android.gms.maps.MapFragment"
    4. android:layout_width="match_parent"
    5. android:layout_height="190dp"
    6. android:layout_gravity="bottom"
    7. android:layout_marginTop="5dp"
    8. android:layout_marginBottom="10dp"
    9. android:layout_marginLeft="10dp"
    10. android:layout_marginRight="10dp"
    11. android:layout_below="@+id/ivLocation"
    12. android:padding="1dp"
    13. android:background="#D3D3D3"
    14. map:liteMode="true"
    15. />

    => I have the following code in onCreateView() of fragment:-

    ---------------------------------------------------------------------------------------

    1. MapsInitializer.initialize(this.getActivity());
    2. mapView = (MapView) view.findViewById(R.id.map);
    3. mapView.onCreate(savedInstanceState);
    4. mapView.getMapAsync(this);
    5. mapView.setClickable(false);

     

    => And i also have the following code in the fragment class :-

    ----------------------------------------------------------------------------------------

    1. @Override
    2. public void onPause() {
    3. super.onPause();
    4. mapView.onPause();
    5. }
    6.  
    7. @Override
    8. public void onDestroy() {
    9. super.onDestroy();
    10. mapView.onDestroy();
    11. }
    12.  
    13. @Override
    14. public void onSaveInstanceState(Bundle outState) {
    15. super.onSaveInstanceState(outState);
    16. mapView.onSaveInstanceState(outState);
    17. }
    18.  
    19. @Override
    20. public void onLowMemory() {
    21. super.onLowMemory();
    22. mapView.onLowMemory();
    23. }
    24.  
    25. @Override
    26. public void onResume() {
    27. super.onResume();
    28. mapView.onResume();
    29. }
    30.  
    31. @Override
    32. public void onDestroyView() {
    33. super.onDestroyView();
    34. }
    35.  
    36. @Override
    37. public void onMapReady(GoogleMap googleMap) {
    38. map = googleMap;
    39. if (ActivityCompat.checkSelfPermission(getContext(), android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(getContext(), android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
    40. // TODO: Consider calling
    41. // ActivityCompat#requestPermissions
    42. // here to request the missing permissions, and then overriding
    43. // public void onRequestPermissionsResult(int requestCode, String[] permissions,
    44. // int[] grantResults)
    45. // to handle the case where the user grants the permission. See the documentation
    46. // for ActivityCompat#requestPermissions for more details.
    47. return;
    48. }
    49. map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
    50. LocationManager locationManager = (LocationManager) getContext().getSystemService(Context.LOCATION_SERVICE);
    51. Location lastLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
    52. LatLng latLng = new LatLng(lastLocation.getLatitude(), lastLocation.getLongitude());
    53. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 16));
    54. map.addMarker(new MarkerOptions().position(latLng).title("City Coordinator location at login").icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_YELLOW)));
    55. map.getUiSettings().setMapToolbarEnabled(false);
    56. }

     

    This code is working in moto e2 phone with lollipop android, but not working in moto g3 phone with marshmallow android. In marshmallow, map is not loading at all in googlemap lite mode. If i remove this attribute( map:liteMode="true") in mapview, map is loading but marker is not present.

 1 Answer(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: