我的活动中有一个地图视图,它在没有呼叫时工作正常。所以很明显有一个onResume()
,至少我的日志猫是这么说的。我想知道我缺少什么才能让我的地图视图正常恢复。
日志猫
05-06 18:47:28.069: ERROR/AndroidRuntime(4869): at www.Freshapp.com.Thumper.html.Thumper.onResume(Thumper.java:307)
onResume()
protected void onResume() {
Log.i(TAG, "[ACTIVITY] onResume");
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,
0, new GeoUpdateHandler());
super.onResume();
307 号线
super.onResume();
我错过了什么吗?
-谢谢