我想添加一個圖像,位於我的地圖上方,上面有2個按鈕。我怎樣才能做到這一點? 這是我想在Android中實現的。 帶按鈕的圖像 - 正好位於Google地圖上
-1
A
回答
1
檢查此鏈接一個MapView按鈕:
http://android-er.blogspot.in/2011/07/draw-on-custom-view-over-mapview.html
或者
您可以通過添加一個標題欄/視圖像這樣實現這一目標,使用該圖像作爲標題視圖的背景:
<RelativeLayout
android:id="@+id/headerlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:background="drawable_image/color(Whatever u want)"
>
<Button android:id="@+id/one" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" android:text="one">
</Button>
<Button android:id="@+id/two" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentRight="true" android:text="two">
</Button>
</RelativeLayout>
<MapViewActivity
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:clickable="true" android:apiKey="your map key"
android:layout_below="@+id/headerlayout"
/>
+0
謝謝,讓我試試。 – 2012-04-16 14:25:40
0
試試看看這個代碼。這將放置在使用RelativeLayout的
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:clickable="true" android:apiKey="your_id" />
<Button android:layout_below="@+id/mapview"
android:text="@+id/Button03"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"/>
<Button android:layout_below="@+id/mapview"
android:text="@+id/Button02"
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"/>
<Button android:text="@+id/Button03"
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_toLeftOf="@+id/mapview"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
相關問題
- 1. 將圖像置於帶按鈕的圖像上
- 2. IOS6上帶圖像的按鈕
- 3. 帶圖像的FLTK按鈕
- 4. 帶圖像的按鈕
- 5. 帶圖像的WPF按鈕
- 6. 用google地圖上的按鈕點擊獲取用戶位置
- 7. Android圖標/按鈕像Google+上的發送按鈕
- 8. 在圖像上定位按鈕
- 9. Google Maps最後的好地圖位置
- 10. 意圖在Google地圖上發佈帶有地標的地圖
- 11. Google Glass Playground上的地圖圖像
- 12. 按鈕上的圖像
- 13. 按鈕圖像不正常
- 14. 在全屏Google地圖上添加Facebook登錄按鈕Google地圖
- 15. Android - 帶3個按鈕的地圖
- 16. 按鈕後的圖像與Google+
- 17. 帶文本和圖像的HTML按鈕
- 18. Android:帶圖像的全息按鈕
- 19. iOS:帶按鈕圖像的導航欄
- 20. 帶文本和圖像的Android按鈕
- 21. 帶有透明度的圖像按鈕
- 22. 帶圖像的自定義按鈕
- 23. HTML +帶文本和圖像的按鈕
- 24. 帶動畫的UIButton圖像按鈕
- 25. 帶圖像的Windows Phone 7按鈕
- 26. 帶有純HTML/CSS圖像的按鈕
- 27. 帶圖像格式的單選按鈕
- 28. 帶有圖像按鈕的Android佈局
- 29. 製作帶圖像的開/關按鈕
- 30. 帶文本和圖像的按鈕(Android)
你的問題不清楚..你想要什麼?你想添加圖像的地方? – 2012-04-16 13:24:43
@頂部--->在圖片 - 概述(概述是圖片和編輯並開始是按鈕),我想在此圖片上添加按鈕。 – 2012-04-16 13:28:38