如何开启 Android 的虚拟GPS功能
2010-03-25 16:57:00 来源:WEB开发网核心提示:10 addressList = geocoder.getFromLocation(myLatitude, myLongitude, 5);11 if(addressList!=null && addressList.size()>0) {12 String address = new String();13 L
10 addressList = geocoder.getFromLocation(myLatitude, myLongitude, 5);
11 if(addressList!=null && addressList.size()>0) {
12 String address = new String();
13 Log.i(TAG,addressList.get(0).toString());
14 address = addressList.get(0).getAddressLine(0) + ", "
15 + System.getProperty("line.separator")
16 + addressList.get(0).getAddressLine(1) + ", "
17 + addressList.get(0).getAddressLine(2);
18 ((TextView)findViewById(R.id.CurrentLocation)).setText(address);
19 }
20
21 } catch (IOException e) {
22 e.printStackTrace();
23 }
温馨提醒:
• 我个人注意到有时候手动进入定位无效。目前我还不知道这个原因,但现在的某个工作区就是只是通过geo fix指令重新输入指令。
• 如果你搞不清纬度和经度的话,我再重申一下: 纬度:东<>西走向 (你可以想象一下中国伟大的长城,它就是东西走向的^_^);经度:南<>北走向。
[]
更多精彩
赞助商链接