本文介绍了在寻找Android的当前位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图找到当前的位置,这是我的code。
的LocationManager mlocManager =(的LocationManager)getSystemService(Context.LOCATION_SERVICE);
位置位置=新的位置(mlocManager.GPS_PROVIDER); 的System.out.println(***经度**+ location.getLongitude());
的System.out.println(***纬度**+ location.getLatitude());
但是当我运行的应用程序,它总是显示0.0
任何人都可以看到这个问题?
解决方案
位置位置=新的位置(mlocManager.GPS_PROVIDER);
写这个语句后,如果你把光标放在位置你会知道这句话的意思extact
根据谷歌文档
You need to fire requestLocationUpdate
to get Lat & lon(If any).
Also since you are running this example on Emulator.You will need to emulate send Lat & Lonmanually.
这篇关于在寻找Android的当前位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!