只要我在布局XML中添加地图,活动就会加载得很慢。很长一段时间后,它会跳转到活动并显示地图。我对此很新鲜,任何帮助都会很好。
我找到了一个网址链接,说我应该尝试延迟加载。我理解它,因为它将首先进入活动,然后加载地图。但我不知道如何实现这一点。
有人可以提供一个例子吗?
<com.google.android.maps.MapView
android:id="@+id/location_map"
android:layout_toRightOf="@id/rl_personaltrip_departure_times"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:enabled="true"
android:clickable="true"
android:apiKey="@string/maps_api_key"
/>
答案 0 :(得分:0)
只需记下以下代码
mapView = (MapView) findViewById(R.id.mapView);
mapView.preLoad();