我想打开一个inbuilt google map intent
显示两个地方之间的路线而不打开一个complete action dialog, which asked for Browser and Map
。
我试过这个。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr="+PreferenceData.getLatitude(HotelInfomation.this)+","+PreferenceData.getLongitude(HotelInfomation.this)+"&daddr="+latitude+","+longitude));
startActivity(intent);
但它会打开一个对话框,询问 Complete Action Using Browser 或 map 。我不想要那个 Dialog 。