我需要为大学任务开发一个Android应用程序,其中一部分包括将设备的GPS坐标发送到我的数据库。这是我用来获得强制的课程
public class MyLocationListener implements LocationListener {
double latitude;
double longitude;
public MyLocationListener(Context myContext){
LocationManager locationManager = (LocationManager) myContext.getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
}
public double getLatitude(){
return latitude; }
public double getLongitude(){
return longitude; }
@Override
public void onLocationChanged(Location location) {
// TODO Auto-generated method stub
latitude = location.getLatitude();
longitude = location.getLongitude();
}
@Override
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub
}
@Override
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub
}
}
在InterfaceActivity.java中调用它,使用:
MyLocationListener ggwp = new MyLocationListener(InterfaceActivity.this);
HttpDevices elenco = new HttpDevices(LoginIstance.getIst().getLog()[0],LoginIstance.getIst().getLog()[1],LoginIstance.getIst().getID(),String.valueOf(ggwp.getLatitude()),String.valueOf(ggwp.getLongitude()));
最后,HttpDevices是一个asynttask,使用以下代码“运行”http消息到我的数据库:
HttpPost httppost = new HttpPost("http://88.116.86.82/android/remote/connessione.php?user="+usr+"&pass="+pss+"&id="+id+"&lat="+lat+"&long="+log);
但是发送到数据库的coords始终是0.0 - 0.0,我甚至无法在模拟器(蓝色堆栈)上尝试调试代码,因为它没有gps coords。尝试在我的Moto G上,但它们只是0.我试图在我的浏览器中发送该字符串(connessione.php等...),为lat和long提供随机值,是的,它有效。它会更新数据库并在我的应用程序中显示coords,因此问题应该在java中。有小费吗?我在google / stackoverflow中搜索了很多并且没有找到任何东西,这是我第一次遇到需要我在这里发帖的问题。希望你能帮我!谢谢你!
编辑:如果你想查看我的整个代码,有一个github链接: https://github.com/leejaku/RemoteAndroid2
答案 0 :(得分:0)
我只是试着通过你的代码......如果我遗漏了某些内容,请纠正我
如果我查看你的HttpDevices类,你会尝试像这样发送你的数据......
lat = String.valueOf(MyLocationListener.latitude);
log = String.valueOf(MyLocationListener.longitude);
这将尝试获取类属性的值为0.0,因为它不是更新lat和long的MyLocationListener的实例...您需要创建一个MytonInterner的Singleton以获得一个单独的sharedInstance你的监听器,或者你必须使用委托模式,或者将值保存到SharedPreferences ......
你是否有足够的Java知识来构建这些范例之一,这对你有意义吗? (对不起那个问题,我不知道你的伴侣有多好: - )...)否则我可以给你写点什么来解决它
<强>更新强>
这个问题似乎很讨厌,所以我们需要一个“NastyLocationListener”来解决它,感谢Neo编写了最终的问题; - )
结帐此课程 https://gist.github.com/DennisWeidmann/de2ebb2b2549a938fa50
就像这样使用
/////////Just to know it
Log.e("lati", NastyLocationListener.getLatitude(this)); //On most phones you can use the Listener without any other Code
Log.e("longi", NastyLocationListener.getLongitude(this)); //It uses Androids native cached location but this is not updated proper
/////////Just to know it end
/////////Normal usage
nastyLocationListener = new NastyLocationListener(this); //In your MainActivity instanciate a NastyLocationListener (its only needed once... All other Activities could get data from him)
nastyLocationListener.startListening(); //It starts listening to Location Updates and triggers the Location Provider to fetch updates (its bool, true if almost one Provider is available, false if no Provider is available)
nastyLocationListener.stopListening(); //Use this line when you pause the app, or quit it... it will stop the listener and could be resumed with startListening()
NastyLocationListener.getLatitude(this); //Could be used in every class, on every time, however you want without any other code like above
NastyLocationListener.getLongitude(this); //Could be used in every class, on every time, however you want without any other code like above
/////////Normal usage end
<强>更新强>
我的设备上的应用程序截图没有更改任何代码而不是REST调用,我已经插入了一个日志来输出我的纬度..
答案 1 :(得分:0)
尝试使用此类,它来自我的github帐户:https://github.com/chiiiky14/GPStracker
将其导入您的项目并创建对象:
GPSTracker gpstracker = new GPSTracker(context);
之后:
gpstracker.getLatitude();
gpstracker.getLongitude();
确保您的设备的GPS已经激活。希望这会有所帮助。