谷歌地图挂在低速互联网连接,Android的(Google map hang in slow spe

2019-10-23 06:50发布

在我的活动之一,我表示片段谷歌地图。 它的正常工作与3G或高速互联网连接。 但在2G或非常缓慢的互联网连接它挂在我的移动,而经过一段时间后,我得到“没有响应”的消息。 有没有什么办法让我可以处理这种情况?

这是我的工作代码: -

 public class MapLoader extends FragmentActivity implements View.OnClickListener {
  // GUI Widget
TextView lblNumber;
Button btnCall;
String number;
GoogleMap googleMap;
Bitmap myBitmap;
private String filePath;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mapload);

    // Getting reference to the SupportMapFragment of activity_main.xml
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);

    // Getting GoogleMap object from the fragment
    googleMap = mapFragment.getMap();
    googleMap.clear();
    String filterAddress = "";
    double lat=0;
    double lng=0;
    String ontime="";
    try {
        UserFunctions userFunction = new UserFunctions();
        JSONObject json = userFunction.getUserData(number);
        if(json.has("user")) {
            JSONArray android_version_array = json.getJSONArray("user");
            //getting android version
            for (int i = 0; i < android_version_array.length(); i++) {
                // creating new HashMap
                HashMap<String, String> map = new HashMap<String, String>();
                JSONObject myObj = android_version_array.getJSONObject(i);
                String lattiude = myObj.getString("latitude");
                String logitude = myObj.getString("longitude");
                ontime=myObj.getString("gpsTime");
                lat = Double.parseDouble(lattiude);
                lng = Double.parseDouble(logitude);
                // adding each child node to HashMap key => value
            }

            Geocoder geoCoder = new Geocoder(
                    getBaseContext(), Locale.getDefault());
            try {
                List<Address> addresses = geoCoder.getFromLocation(
                        lat,
                        lng, 1);

                if (addresses.size() > 0) {
                    for (int index = 0;
                         index < addresses.get(0).getMaxAddressLineIndex(); index++)
                        filterAddress += addresses.get(0).getAddressLine(index) + " ";

                }
                //  SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
                //  mapFragment.getView().findViewById()
                TextView a = (TextView) findViewById(R.id.test);
                a.setText(filterAddress);
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (Exception e2) {
                // TODO: handle exception

                e2.printStackTrace();
            }

             // Creating an instance of MarkerOptions to set position
            MarkerOptions markerOptions = new MarkerOptions();

            LatLng LOCATION = new LatLng(lat, lng);
            // Setting position on the MarkerOptions
            markerOptions.position(LOCATION);

            // Animating to the currently touched position
            // googleMap.animateCamera(CameraUpdateFactory.newLatLng(LOCATION),17.0f);
            googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(lat, lng), 17.0f));

            // Adding marker on the GoogleMap
            Marker marker = googleMap.addMarker(markerOptions);
            // Showing InfoWindow on the GoogleMap
            marker.showInfoWindow();

   }catch (Exception e){
        e.printStackTrace();
     }
  }
 }

注: - 这不是一个完整的代码。 我删除了一些代码安全性的理由。

Answer 1:

getMap()已过时。 您应该使用getMapAsync()避免等待UI线程。



文章来源: Google map hang in slow speed internet connection, Android