我想通過mapview放置透明(地圖下方可見)按鈕嗎? 我如何實現這一目標?如何把一個透明的按鈕放在mapview上?
0
A
回答
1
嘗試使用這個按鈕 機器人:背景=「@空」或 機器人:背景=「@機器人:彩色/透明」 編輯: 放置在使用相對佈局:
<?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>
0
你可以將地圖包裝在FrameLayout或其他東西中。然後向FrameLayout添加一個按鈕,並使用android:layout_alignParentRight="true"
作爲Right,Left,Top和Bottom。然後按鈕將它的邊緣與FrameLayout的邊緣對齊,這應該包裹地圖。
相關問題
- 1. 如何把一個透明的佈局浮動動作按鈕
- 2. 把一個按鈕放在imageView上
- 3. 把一個按鈕放在ImageView上
- 4. 在MapView上繪圖透明
- 5. 如何把按鈕放在webview上
- 6. 如何在圖像上放置透明按鈕?
- 7. 如何把按鈕紋理放在另一個紋理上?
- 8. 把一個透明的NSWindow永久地放在另一個NSWindow
- 9. 如何使按鈕透明
- 10. 如何把透明背景的另一個Div放在一個Div?
- 11. 把兩個按鈕放到一個UITableViewCell
- 12. Mapview上的按鈕
- 13. 多個JavaScript上傳按鈕只把內容放在一個
- 14. 想要在透明層上放置按鈕的暗色
- 15. 如何把Google MapView放在UIView中?
- 16. 繪製一個透明按鈕
- 17. 如何把價值放在按鈕?
- 18. 如何把按鈕放在內線?
- 19. 如何把< or >放在一個android按鈕
- 20. 使按鈕在鼠標上透明
- 21. android-想把按鈕放在listview上面
- 22. 把按鈕放在masterdetail模板上xcode
- 23. 如何添加MapView上的按鈕android
- 24. WPF把一個按鈕放在標籤上
- 25. C#透明按鈕
- 26. wxpython透明按鈕
- 27. 如何創建一個透明的按鈕?
- 28. 三重播放按鈕:透明背景的圖像按鈕
- 29. Rad Studio如何關閉MapView上的縮放按鈕?
- 30. 透明滾動視圖上的非透明按鈕有問題
好的thx,但問題是如何把它放在mapview上。 – DixieFlatline 2012-07-24 07:57:45