我想用代码打开地图应用,我喜欢这样:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse( “http://maps.google.com/maps?saddr=” +43.253392+ “ ”+ -2.902343 +“ &安培; DADDR = ”+43.262925+“,” 2.931504));
startActivity(intent);
像这样我必须把原始地址和命运地址放在一起,但我怎样才能在原点地址中输入我的实际位置来自动生成
答案 0 :(得分:2)
只需删除saddr
参数
Uri.parse("http://maps.google.com/maps?daddr="+43.262925+","+2.931504));