GPS ローカリゼーションを使用して Android アプリを構築しています。そのためには、最初に速度、最終修正時間、デルタタイム、距離などのローカリゼーション パラメーターを表示する必要があります。速度に問題はありませんが、getTime(0) の結果を textView に表示しようとすると、最初の GPS 修正を取得した直後にアプリがクラッシュします。実際の GPS 信号を使用して電話でアプリを直接テストしているため、スタック ビューを取得する方法がわかりません。GPX データ ファイルを介してジャーニー シミュレーションを構成するのに苦労したため (GPS 信号をシミュレートしようとすると、エミュレーターが再起動し続ける)、実際の電話で直接作業を行いました。
問題の主な要素は次のとおりです。
public void displayText(Integer input, double t1, double t0, int signal, int counter) {
tv.setText(String.valueOf(input));
t1tv.setText("t1 : "+String.valueOf(t1));
t0tv.setText("t0 : "+String.valueOf(t0));
signaltv.setText("Signal : "+signal);
countertv.setText("Counter : "+counter);
}
private class MyLocationListener implements LocationListener {
Integer counter = 0;
public void onLocationChanged(Location loc) {
if (loc != null) {
Integer fix=0;
Double speed = 0.0;
if (loc.hasSpeed()) {
speed = loc.getSpeed() * 1.0;
fix=2;
speed = speed * 3.6d;
displayText(speed.intValue(), loc.getTime(), 0.0, fix, counter);
//having the "loc.getTime()" sent to the displayText method is making the app crash.
}
else {
try {
// Here I have some other code, but it's irrelevant for the occasion as not used when the app chrashes. }
catch (NullPointerException e) {
}
}
counter = (counter + 1) % data_points;
}
}
それほど複雑なことはないと思いますが、私は Java でのプログラミングにまったく慣れていません (Pascal/Delphi プログラミングに何年も取り組んできました)。
更新: 関数を getElapsedRealtimeNanos() に変更し、最小 API を 17 に変更し、別の VM にスワップして GPS エミュレーションを実行できましたが、それでもアプリはクラッシュしますが、少なくともいくつかのトレースがあります:
02-21 07:57:08.942: W/dalvikvm(1131): threadid=1: thread exiting with uncaught exception (group=0xb1a53ba8)
02-21 07:57:08.982: E/AndroidRuntime(1131): FATAL EXCEPTION: main
02-21 07:57:08.982: E/AndroidRuntime(1131): Process: com.the314.td, PID: 1131
02-21 07:57:08.982: E/AndroidRuntime(1131): java.lang.NullPointerException
02-21 07:57:08.982: E/AndroidRuntime(1131): at com.the314.td.testdrive$MyLocationListener.onLocationChanged(testdrive.java:308)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:279)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:208)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.location.LocationManager$ListenerTransport$1.handleMessage(LocationManager.java:224)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.os.Handler.dispatchMessage(Handler.java:102)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.os.Looper.loop(Looper.java:136)
02-21 07:57:08.982: E/AndroidRuntime(1131): at android.app.ActivityThread.main(ActivityThread.java:5017)
02-21 07:57:08.982: E/AndroidRuntime(1131): at java.lang.reflect.Method.invokeNative(Native Method)
02-21 07:57:08.982: E/AndroidRuntime(1131): at java.lang.reflect.Method.invoke(Method.java:515)
02-21 07:57:08.982: E/AndroidRuntime(1131): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
02-21 07:57:08.982: E/AndroidRuntime(1131): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
02-21 07:57:08.982: E/AndroidRuntime(1131): at dalvik.system.NativeStart.main(Native Method)
02-21 07:57:17.652: I/Process(1131): Sending signal. PID: 1131 SIG: 9