0
我使用下面的代碼,以顯示我的位置在谷歌地圖如何使用地理URI在Android的半屏上顯示地圖?
String uri ="geo:" + location.getLatitude() + "," + location.getLongitude() + "?z=" + 3;
intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
但它顯示整個屏幕,我不想在地圖上。如果不使用com.google.android.maps.MapView
或者沒有將地圖庫導入到我的項目中,是否可以在Android手機的半屏上顯示地圖? 如果有人知道解決方案,Plz會幫助我。 此致敬禮。