这是我在 android 中的代码并且显示错误。我不知道出了什么问题,但我很确定它必须做一些事情,LocationManager
因为直到那条线它工作正常。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d("Exception", "Something gone wrong !! ");
/*after this line it shows error */
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
我现在想要的只是显示经度和纬度的值,以便我可以确定代码到这里为止是好的。