2013-06-25 52 views
1

我設置了Google地圖v2。和我的xml如下:在xml中的Google地圖v2中設置ImageView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    tools:context=".MapActivity" > 


    <fragment 
     android:id="@+id/map" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     class="com.google.android.gms.maps.SupportMapFragment" /> 


</LinearLayout> 

現在我想添加imageview設置,是否有可能在地圖上添加imageview?如果可能,如果您有任何想法請與我分享。謝謝。

回答

2

是的,它是possible.I認爲你正在尋找的東西如..

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

<fragment 
    android:id="@+id/map" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    class="com.google.android.gms.maps.SupportMapFragment" /> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:layout_centerVertical="true" 
    android:paddingTop="50dp" 
    android:paddingLeft="20dp" 
    android:src="@drawable/shadow" /> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:layout_centerVertical="true" 
    android:src="@drawable/plane" /> 

+0

非常感謝,我又把圖像,謝謝。 –

+0

很高興幫助你.. :) – ridoy

相關問題