2012-07-24 76 views

回答

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

好的thx,但問題是如何把它放在mapview上。 – DixieFlatline 2012-07-24 07:57:45

0

你可以將地圖包裝在FrameLayout或其他東西中。然後向FrameLayout添加一個按鈕,並使用android:layout_alignParentRight="true"作爲Right,Left,Top和Bottom。然後按鈕將它的邊緣與FrameLayout的邊緣對齊,這應該包裹地圖。