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>
4

1 回答 1

0

使用 RelativeLayout 而不是 LinearLayout。这将使您能够在 MapView 上堆叠 SurfaceView。在 SurfaceView 的事件处理程序中,您可以编写代码来检测指尖运动。选中在地图上放置透明表面视图

于 2012-09-21T03:45:09.390 回答