今天学习安卓手机的GPS定位,然后发现这个位置管理器一直是null
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if(locationManager == null){
show.setText(“locationManager 创建成功!”);
}else{
show.setText(“locationManager 创建失败!”);
}
本人测试的时候显示创建失败,问一下是什么原因。
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if(locationManager == null){
show.setText(“locationManager 创建成功!”);
}else{
show.setText(“locationManager 创建失败!”);
}
本人测试的时候显示创建失败,问一下是什么原因。
解决方案
40
假如是创建失败,在你的程序中,实际应该算是成功吧!
if(locationManager == null)
if(locationManager == null)