1
A
回答
2
在您的自定義視圖xml
文件中,請嘗試更改地圖片段的大小。在下面的示例中,我將高度和寬度設置爲30dp
。
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="30dp"
android:layout_height="30dp"
android:id="@+id/map"
tools:context=".MapsActivity"
android:name="com.google.android.gms.maps.SupportMapFragment" />
2
在XML試試這個:
<!-- Map -->
<FrameLayout
android:id="@+id/map_container"
android:layout_width="match_parent"
android:layout_height="200dp"">
</FrameLayout>
並在代碼:
// This method adds map fragment to the container.
private void addMapFragment() {
SupportMapFragment mMapFragment = SupportMapFragment.newInstance();
mMapFragment.getMapAsync(this);
getSupportFragmentManager().beginTransaction()
.replace(R.id.map_container, mMapFragment)
.commit();
}
還可以使用getChildFragmentManager()
而不是getSupportFragmentManager()
如果你是一個片段內。
-1
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
在活動XML文件過去,改變片段 前的ID:機器人:ID = 「@ + ID/MAP1」
然後
轉到你的java文件和過去的setcontent後在上創建
MapFragment mMapFragment = MapFragment.newInstance();
FragmentTransaction fragmentTransaction =
getFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.map1, mMapFragment);
fragmentTransaction.commit();
mMapFragment.getMapAsync(this);
實現onMapReadyCallBack方法和在活動此改變
注意: - 此項工作僅限於您在應用程序中添加Google地圖
相關問題
- 1. 將FlowPlayer嵌入到Google地圖中InfoWindow
- 2. 如何將Google地圖嵌入到wxPython程序中?
- 3. 將Google地圖嵌入到動態創建的div中
- 4. 嵌入Google地圖
- 5. Google地圖活動
- 6. 如何提示將Google地圖路線從嵌入地圖打開到Google地圖導航器中?
- 7. 嵌入Google日曆活動
- 8. 將原生Google地圖嵌入到移動應用程序
- 9. 將Google地圖嵌入到移動網站
- 10. 在Android中的另一個活動中嵌入地圖活動
- 11. 如何將動態靜態Bing地圖嵌入到網頁中
- 12. 將動態地圖嵌入到Php
- 13. 如何在嵌入式Google地圖中移動地圖的中心?
- 14. 將Google繪圖嵌入到Github wiki中
- 15. 將活動PDF嵌入到網頁中?
- 16. 將Google地圖嵌入jQuery Mobile頁面
- 17. 如何將Google圖表甘特圖嵌入Google表格中?
- 18. 是否可以將Google地圖嵌入到MapField或BrowserField中?
- 19. 嵌入Google地圖街景
- 20. 無法嵌入Google地圖
- 21. 如何在Google地圖中嵌入Flash 360遊覽到我的地圖?
- 22. 如何將Google Visual API圖表嵌入到JasperReports中?
- 23. 如何將PHP數組嵌入到Google圖表腳本中?
- 24. 如何將MapView嵌入到現有活動中?
- 25. 如何將Google地圖嵌入Flash網站?
- 26. 將谷歌地圖嵌入到Flash中
- 27. 如何在JavaScript中嵌入的Google地圖上點擊圖釘?
- 28. 將活動嵌入到另一個
- 29. Google Maps API中的嵌入地圖
- 30. 從Google Maps Engine中嵌入地圖