ロケーションマネージャーから現在のロケーションを受け取り、それらの座標をユーザーに表示するアクティビティのテキストビューを更新することになっているプロジェクトがあります。ロケーションマネージャーをバックグラウンドでサービスとして実行する必要があります。現在、アクティビティを開いていても、場所が更新され、textViewsを更新するメソッドがサービスから呼び出されるたびに、強制的に閉じられます。また、静的メソッドはtextViewsと互換性がないため、メソッドを静的メソッドに変更することはできません。以下は、サービス、呼び出されるメソッド、およびスタックトレースです。
場所が変更されたときに呼び出されるサービス中のメソッド
public void onLocationChanged(Location location) {
currentLocation = location;
SplashActivity.historyList.add(currentLocation);
Toast.makeText(getApplicationContext(), "Point added",
Toast.LENGTH_SHORT).show();
//postpones the update until NavigatorActivity starts
if (NavigatorStarted) {
new NavigatorActivity().doActionFine(currentLocation);
}
// these lines are controversial...
if (location.getAccuracy() > 1000 && location.hasAccuracy())
locationManager.removeUpdates(this);
}
正確なGPS信号または大まかな信号のいずれかから新しい位置でテキストビューを更新することを目的としたアクティビティのメソッド。do actionメソッドを使用して、LocationServiceの現在の場所のパラメーターを使用してサービスから呼び出します
public void updateLocationTextViewsFine(Location currentLocation) {
currentLatView = (TextView) findViewById(R.id.currentLat);
currentLonView = (TextView) findViewById(R.id.currentLon);
// update the textviews (labels)
String lat = currentLocation.getLatitude() + " (accurate)";
String lon = currentLocation.getLongitude() + " (accurate)";
currentLatView.setText(lat);
currentLonView.setText(lon);
}
public void updateLocationTextViewsCoarse(Location currentLocation) {
currentLatView = (TextView) findViewById(R.id.currentLat);
currentLonView = (TextView) findViewById(R.id.currentLon);
// update the textviews (labels)
String lat = currentLocation.getLatitude() + " (low accuracy)";
String lon = currentLocation.getLongitude() + " (low accuracy)";
currentLatView.setText(lat);
currentLonView.setText(lon);
}
public void doActionFine(Location currentLocation) {
updateLocationTextViewsFine(currentLocation);
}
public void doActionCoarse(Location currentLocation) {
updateLocationTextViewsCoarse(currentLocation);
}
新しいエラーを受け取りました。
04-20 20:15:33.894: E/AndroidRuntime(4389): FATAL EXCEPTION: main
04-20 20:15:33.894: E/AndroidRuntime(4389): java.lang.NullPointerException
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.app.Activity.findViewById(Activity.java:1637)
04-20 20:15:33.894: E/AndroidRuntime(4389): at com.example.UVAMapsProject.NavigatorActivity.updateLocationTextViewsFine(NavigatorActivity.java:341)
04-20 20:15:33.894: E/AndroidRuntime(4389): at com.example.UVAMapsProject.NavigatorActivity.doActionFine(NavigatorActivity.java:360)
04-20 20:15:33.894: E/AndroidRuntime(4389): at com.example.UVAMapsProject.LocationService$2.onLocationChanged(LocationService.java:116)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:191)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:124)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.location.LocationManager$ListenerTransport$1.handleMessage(LocationManager.java:140)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.os.Handler.dispatchMessage(Handler.java:99)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.os.Looper.loop(Looper.java:123)
04-20 20:15:33.894: E/AndroidRuntime(4389): at android.app.ActivityThread.main(ActivityThread.java:4627)
04-20 20:15:33.894: E/AndroidRuntime(4389): at java.lang.reflect.Method.invokeNative(Native Method)
04-20 20:15:33.894: E/AndroidRuntime(4389): at java.lang.reflect.Method.invoke(Method.java:521)
04-20 20:15:33.894: E/AndroidRuntime(4389): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
04-20 20:15:33.894: E/AndroidRuntime(4389): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
04-20 20:15:33.894: E/AndroidRuntime(4389): at dalvik.system.NativeStart.main(Native Method)