2
顯示Google地圖,但在加載地圖時,標題欄消失。 有沒有解決方案來顯示標題欄?如何在加載谷歌地圖時顯示標題欄
private void calc_short_Distance() {
String uri = "http://maps.google.com/maps?saddr=" + currentLatitude+","+currentLongitude+"&daddr="+fixedLatitude+","+fixedLongitude;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
//***Title bar displayed upto here and after loading intent it disappear
startActivity(intent);
}
您應該將您的代碼(xml和java)作爲您的問題的一部分發布 - 但不是整個代碼,只有相關部分。 –
@AleksG我已經添加了代碼.. – nKandel
您正在打開默認瀏覽器或默認地圖應用程序。它不是你的應用程序的一部分,所以你不能在其他應用程序中顯示標題欄 –