gpt4 book ai didi

java - 我的 Android 应用程序崩溃了

转载 作者:行者123 更新时间:2023-12-01 11:53:57 24 4
gpt4 key购买 nike

我构建了一个运行服务的简单应用程序。用户在应用程序中输入地址,服务需要计算用户位置与他输入的地址之间的距离。如果它们之间的距离小于 100 米,则会弹出一条 Toast 消息。当我第一次运行该应用程序时,它会正确提供距离,但是在我在不同的地方运行应用程序几次后,距离的计算量正在增加。例如:我打开 eclipse(在我家里),然后在我的设备上运行该应用程序。我输入我家的地址,计算距离后,距离是5米,所以弹出了Toast消息。然后我去某个地方并输入我要去的地方的地址,当我到达那里时,就会弹出 toast 困惑的情况。但是,当我回到自己的住处并在手机连接到 eclipse 的情况下再次运行该应用程序(使用我家的地址)时,距离现在是 20 米而不是 5 米。可能是什么问题?该应用程序有时会崩溃......

主要 Activity :

public void startMethod(View v)
{
Bundle args = new Bundle();
args.putParcelable("from_position", latLngC);
args.putParcelable("to_position", latLngD);


Intent i = new Intent(this, MainService.class);
i.putExtra("bundle", args);
startService(i);
}

主服务:

Toast.makeText(this, "service started", Toast.LENGTH_LONG).show(); // 
Bundle bundle = intent.getParcelableExtra("bundle");

latLngC = bundle.getParcelable("from_position");//Getting the latlng of user position
latLngD = bundle.getParcelable("to_position");//Getting the latlng of destination position

timer = new Timer();
//schedule the timer, after the first 5000ms the TimerTask will run every 10000ms
timer.scheduleAtFixedRate(
timerTask = new TimerTask() {

public void run() {
//use a handler to run a toast that shows the current timestamp

handler.post(new Runnable() {

public void run() {

latLngC=setMyLocation(); // Getting users current location
double r = CalculationByDistance(latLngC, latLngD);
if(r<0.1){
Calendar calendar = Calendar.getInstance();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a");
final String strDate = simpleDateFormat.format(calendar.getTime());

//show the toast
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(getApplicationContext(), strDate, duration);
toast.show();
timer.cancel(); // stopping the timer
stopSelf(); // stopping the service
}

}
});
}
}
, 10000, 10000); //

return super.onStartCommand(intent, flag, startId);
}

也在 MainService 中:

public double CalculationByDistance(LatLng StartP, LatLng EndP) {
int Radius=6371;//radius of earth in Km
double lat1 = StartP.latitude;
double lat2 = EndP.latitude;
double lon1 = StartP.longitude;
double lon2 = EndP.longitude;
double dLat = Math.toRadians(lat2-lat1);
double dLon = Math.toRadians(lon2-lon1);
double a = 0;
a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
Math.sin(dLon/2) * Math.sin(dLon/2);
double c = 0;
c = 2 * Math.asin(Math.sqrt(a));
double valueResult= Radius*c;
double km=valueResult/1;
DecimalFormat newFormat = new DecimalFormat("####");
int kmInDec = Integer.valueOf(newFormat.format(km));
double meter=valueResult%1000;
int meterInDec= Integer.valueOf(newFormat.format(meter));
Log.i("Radius Value",""+valueResult+" KM "+kmInDec+" Meter "+meterInDec);

return Radius * c;
}

日志猫:

 02-18 13:49:29.538: E/AndroidRuntime(13037): FATAL EXCEPTION: main
02-18 13:49:29.538: E/AndroidRuntime(13037): java.lang.NullPointerException
02-18 13:49:29.538: E/AndroidRuntime(13037): at com.*******drive.***.MainActivity$GeocoderTask.onPostExecute(MainActivity.java:231)
02-18 13:49:29.538: E/AndroidRuntime(13037): at com.*******drive.***.MainActivity$GeocoderTask.onPostExecute(MainActivity.java:1)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.os.AsyncTask.finish(AsyncTask.java:631)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.os.AsyncTask.access$600(AsyncTask.java:177)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:644)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.os.Handler.dispatchMessage(Handler.java:99)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.os.Looper.loop(Looper.java:137)
02-18 13:49:29.538: E/AndroidRuntime(13037): at android.app.ActivityThread.main(ActivityThread.java:4867)
02-18 13:49:29.538: E/AndroidRuntime(13037): at java.lang.reflect.Method.invokeNative(Native Method)
02-18 13:49:29.538: E/AndroidRuntime(13037): at java.lang.reflect.Method.invoke(Method.java:511)
02-18 13:49:29.538: E/AndroidRuntime(13037): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1007)
02-18 13:49:29.538: E/AndroidRuntime(13037): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:774)
02-18 13:49:29.538: E/AndroidRuntime(13037): at dalvik.system.NativeStart.main(Native Method)

最佳答案

问题可能在于您使用 getLastKnownLocation 获取当前位置(在方法 setMyLocation() 中)。然后,您将获得最后已知的位置,该位置可能不是您当前的位置。如果这是问题所在,首先,您需要获取您的实际位置(有很多方法,例如使用 onLocationChanged),然后计算距离并显示 Toast...

此外,当应用程序崩溃时发布您的 logcat...

关于java - 我的 Android 应用程序崩溃了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28582824/

24 4 0
文章推荐: java - JSOUP - 帮助从
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com