正如你可以從問題中看到的,我需要在mapView上放置一些按鈕,其中應用程序將按用戶按下按鈕,使用當前位置刷新mapView。 我知道如何把上面的按鈕,下,但如何把地圖? 如果任何人有一些示例代碼,或一些指導幫助表示讚賞...如何添加MapView上的按鈕android
10
A
回答
29
你要使用的RelativeLayout及以上的MapView的頂部放置按鈕。請確保不要將其放在Google徽標上。下面是一個示例XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.maps.MapView android:id="@+id/google_maps"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="@string/maps_key"/>
<Button android:id="@+id/googlemaps_select_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Select"/>
</RelativeLayout>
2
嗨人搜索覆蓋產品,你需要的東西:d這裏谷歌鏈接 http://developer.android.com/resources/tutorials/views/hello-mapview.html
和良好的示例:d
+0
我沒有時間看代碼,但我會...感謝麻煩;))) – Jovan
相關問題
- 1. 如何使用mapview添加按鈕?
- 2. Mapview上的按鈕
- 3. Rhomobile添加按鈕和工具欄mapview
- 4. 如何在同一個佈局中添加mapview和按鈕?
- 5. Android添加按鈕
- 6. tabhost上的Android添加按鈕
- 7. 如何添加UITableViewCell上的按鈕
- 8. android:如何添加圖片按鈕?
- 9. 如何在android中添加按鈕?
- 10. 如何爲android按鈕添加陰影
- 11. 如何在android中添加按鈕?
- 12. 如何在ActionBar(Android)中添加按鈕?
- 13. android如何添加瀏覽按鈕?
- 14. 如何直接在Android Wear上通知上添加按鈕
- 15. 如何在Android上的MapView中添加地圖比例尺?
- 16. Android在WebView上添加按鈕?
- 17. android在softkeyboard上添加按鈕
- 18. 如何將3個按鈕添加到Android上的listview?
- 19. 如何在我的Android應用上添加共享按鈕
- 20. 如何將按鈕添加到Android上的Webview?
- 21. 如何在Android的ActionBar中爲上按鈕添加偵聽器?
- 22. 如何在android中的自定義視圖上添加按鈕?
- 23. 如何在按鈕上添加新行?
- 24. 如何添加上述recyclerview按鈕
- 25. 如何將按鈕添加到GoogleMap上
- 26. 如何在MKMapView上添加按鈕?
- 27. 如何在UIPageViewController上添加按鈕
- 28. 如何在圖片上添加按鈕?
- 29. Android:添加覆蓋到MapView?
- 30. 如何在alertdialog按鈕中添加按鈕點擊效果android
感謝的人.. 。這是我正在尋找...再次感謝:DDD – Jovan
謝謝!這對我有幫助! – pandre