《Android第一行代码》11.3使用百度定位一节中,使用:
public class MyLocationListener implements BDLocationListener {}
查阅百度地图官方文档可知,BDLocationListener已经弃用,应该写成:
public class MyLocationListener extends BDAbstractLocationListener {}
《Android第一行代码》11.3使用百度定位一节中,使用:
public class MyLocationListener implements BDLocationListener {}
查阅百度地图官方文档可知,BDLocationListener已经弃用,应该写成:
public class MyLocationListener extends BDAbstractLocationListener {}