解决了问题:我添加了以下代码来设置我的当前位置,它可以成功显示在google map应用程序中。
location.setLatitude(latitude);location.setLongitude(longitude);location.setBearing(bearing);location.setSpeed(speed);location.setAltitude(altitude);location.setTime(new Date().getTime());location.setProvider(LocationManager.GPS_PROVIDER);location.setAccuracy(1);
结论:如果要在新版本的android中使用模拟位置服务,则必须自己设置每个属性。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)