1 Intent intent = new Intent(Intent.ACTION_VIEW); 2 intent.setData(Uri.parse("geo:20.000,50.000")); 3 startActivity(intent);
这样会打开地图应用显示经纬点
时间: 2024-12-14 14:20:51
1 Intent intent = new Intent(Intent.ACTION_VIEW); 2 intent.setData(Uri.parse("geo:20.000,50.000")); 3 startActivity(intent);
这样会打开地图应用显示经纬点