次のコードを使用して、ユーザーの現在の緯度/経度を取得しようとしています。
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = (Location) lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
getLatitude()/ getLongitude()メソッドがLocation型に対して未定義であるというエラーが発生し続けます。
どうすればこれを解決できますか?前もって感謝します。