我正在尝试从这里使用 MyLocation 类。在下面的代码中,我需要在实例化 MyLocation 的类中的任何位置访问变量 currentLat 和 currentLon。我不知道如何访问currentLat
and的值currentLon
LocationResult locationResult = new LocationResult(){
@Override
public void gotLocation(Location location){
currentLat = location.getLatitude();
currentLon = location.getLongitude();
};
}
MyLocation myLocation = new MyLocation();
myLocation.getLocation(this, locationResult);
假设我想在这里
Double x =currentLoc;
我怎么得到那个?任何帮助,将不胜感激