0

在文档中它说 mylocationoverlay onlocationchanged 方法在定义 ACCESS_FINE_LOCATION 权限时同时使用 gps 和网络提供商。当 Gps 开启时一切都很好,onlocationchanged 工作,但是当我关闭 gps onlocationchanged 时从未调用过。我的课有什么问题吗?我必须实现 locationlistener 或 locationmanager 吗?

import android.content.Context;
import android.location.Location;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapView;
import com.google.android.maps.MyLocationOverlay;
import com.google.android.maps.Overlay;

public class FLOverlay extends MyLocationOverlay {

public FLOverlay(Context context, MapView mapView) {
    super(context, mapView);

    enableCompass();
    enableMyLocation();
}

@Override           
public synchronized void onLocationChanged(Location location) {

     /***/
}

@Override
public boolean onTap(GeoPoint p, MapView map) {

            /***/

}

}
4

0 回答 0