首先,我是一个完整的安卓新手。一步一步地开发我的第一个应用程序并面临一些问题。
- 我可以根据纬度和经度获得我的位置,现在我必须将其保存到文件中,并且能够读取文件以在将来比较位置。任何人都可以帮我解决这个问题。
以下是我的错误代码
public void saveCurrentLocation(Location location){
SharedPreferences prefs = this.getSharedPreferences("com.example.mylocation", Context.MODE_PRIVATE);
String currentLat = "com.example.mylocation.location";
String now = prefs.getString(currentLat, location.getLatitude());
}
显示的错误是 location.getLatitude 是双精度,不能保存到字符串(很明显,但不知道如何更改它)
谢谢