Note that there are some explanatory texts on larger screens.

plurals
  1. POGoogle Map tiles randoming reloading on pan
    primarykey
    data
    text
    <p>I am currently working on an application for Android 2.1-update1 with the Google API and everything was working the way it should but seemingly out of nowhere the app now randomly reloads Google Map tiles that have already been displayed. The reload happens when panning, all tiles will go gray and then will reappear and disappear randomly for a second or two and finally stabilize. I have commented my code out leaving the bare essentials and the issue is still present. Does anyone know what the issue might be?</p> <p>I have tested this on my Droid and the emulator with the same results.</p> <p>Here is my bare bones MapActivity:</p> <pre><code> package com.app.test; import com.google.android.maps.MapActivity; import android.location.Location; import android.location.LocationListener; import android.os.Bundle; public class MapViewActivity extends MapActivity implements LocationListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.mapview); } @Override protected void onResume() { super.onResume(); } @Override protected void onPause() { super.onPause(); } @Override protected void onStop() { super.onStop(); } public void onLocationChanged(Location location) { } public void onProviderDisabled(String provider) { } public void onProviderEnabled(String provider) { } public void onStatusChanged(String provider, int status, Bundle extras) { } @Override protected boolean isRouteDisplayed() { return false; } } </code></pre> <p>The method from which it is called:</p> <pre><code> public void display(View view) { Intent intent = new Intent(context,MapViewActivity.class); context.startActivity(intent); } </code></pre> <p>If you need any more information just let me know.</p> <p>Thanks for your help!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload