2012-09-21 53 views
0

我目前正在做一個包含谷歌地圖的Android應用程序,我想用指尖運動在地圖上繪製。請幫助我在指尖上繪製谷歌地圖頂部

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" > 

<com.google.android.maps.MapView 
    android:id="@+id/myGMap" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:apiKey="0TToqyhMYWcvDuJ5NvNtgc-kB8gljGrTXPgiaqw" 
    android:clickable="true" 
    android:enabled="true" /> 

</LinearLayout> 

回答