0
A
回答
0
得到當前的經緯度使用:LocationManager
LocationManager locationmanager = (LocationManager) getSystemService(LOCATION_SERVICE);
Criteria cr = new Criteria();
String provider = locationmanager.getBestProvider(cr, true);
Location location = locationmanager.getLastKnownLocation(provider);
if (location != null) {
double lat=location.getLatitude();
double lng=location.getLongitude();
}
通當前的經緯度到下面的方法將返回您解決!
public List<Address> getAddress(double latitude, double longitude) {
List<Address> addresses = null;
try {
Geocoder geocoder;
geocoder = new Geocoder(youractivityname.this);
if (latitude != 0 || longitude != 0) {
addresses = geocoder.getFromLocation(latitude, longitude, 1);
//testing address below
String address = addresses.get(0).getAddressLine(0);
String city = addresses.get(0).getAddressLine(1);
String country = addresses.get(0).getAddressLine(2);
Log.d("TAG", "address = " + address + ", city =" + city
+ ", country = " + country);
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
// Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
}
return addresses;
}
0
首先你必須要找到你的位置,所以按照這個帖子: Current location這裏Current location。
然後找到的地方,看看這裏 List of places around user
相關問題
- 1. 如何在Google Maps Android API v2中獲取當前位置?
- 2. 如何在google map v2中獲取當前位置信息?
- 3. 如何在android google maps api V2中獲取當前位置?
- 4. 如何獲得GMAPS API V3的當前經緯度位置?
- 5. Gmaps - 當前位置移動多線制
- 6. GMaps V2回彈到原始位置
- 7. 如何獲取當前位置
- 8. 如何獲取當前的iScroll位置?
- 9. 如何獲取當前位置android?
- 10. 如何獲取用戶當前位置
- 11. 如何獲取當前的GPS位置?
- 12. GOOGLE MAPS V2 - 獲取當前用戶位置
- 13. 使用Google Maps API v2獲取當前位置爲TEXT
- 14. 谷歌地圖V2的Android獲取當前位置
- 15. 獲取當前位置
- 16. 獲取當前位置
- 17. 獲取當前位置
- 18. 獲取當前位置
- 19. 獲取當前位置android
- 20. 獲取當前位置ImageView
- 21. Android獲取當前位置
- 22. android獲取當前位置
- 23. CLLocation當前位置獲取位置
- 24. Android位置 - 如何獲取當前位置並避免nullpointerexception
- 25. 如何從位置管理器獲取當前位置?
- 26. Google Maps Android API v2和當前位置
- 27. Android Google Maps Api v2當前位置Null
- 28. 如何在android中獲取前景的當前位置?
- 29. 谷歌地圖V2找到,如果當前位置位於圓
- 30. 如何獲取Android中當前位置的緯度和經度?
列表
和passangerHome.this是未知的。? –passangerHome.this = youractivityname.this –
import java.util.List; –