Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿伙计们,我是 android 新手,我正在尝试制作一个应用程序,该应用程序使用地图来获取任何地方的地址(经度和纬度)或将经度和纬度发送到地图以在其上显示地址,我问我可以用应用程序内置的地图制作这个吗?
是的,您可以:使用意图。
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr="+currLatatitude+","+currLongitude+"); startActivity(i);