我正在制作我的第一个 Android 应用程序,它在初始加载时确定用户的当前位置并在 MapView 中转到它。我已将 MapView/MapController 的初始化委托给 AsyncTask 以使应用程序感觉更灵敏,但我的 doInBackground 方法中出现了 RuntimeException。这是我的初始 Activity 和我正在使用的 AsyncTask 的代码。
public class MainActivity extends MapActivity {
Location latestLocation, targetLocation;
MapController mapController;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Get a reference to the MapView
MapView myMapView = (MapView)findViewById(R.id.myMapView);
MapLoader map = new MapLoader();
try {
map.execute(myMapView).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
mapController = myMapView.getController();
//code which determines current location and animates to it in the Mapview.
}
}
这是我的 AsyncTask 的代码。
public class MapLoader extends AsyncTask<MapView ,Void, Void>{
MapController mapController;
MapView mapView;
@Override
protected Void doInBackground(MapView... params) {
// Get the Map View’s controller
mapController = params[0].getController();
// Configure the map display options
mapView.setSatellite(true);
mapView.displayZoomControls(false);
// Zoom in
mapController.setZoom(19);
return null;
}
}
我是否也应该将用于确定位置的代码放入 AsyncTask 中?目前,我的应用程序加载速度很慢,并且即使在所有内容都初始化后也没有响应。