0

有什么办法可以onTouchListener处理com.google.android.gms.maps.MapView。因为,我尝试了常规方法,就像我们在 a 的情况下所做的那样,View但它没有奏效。

4

1 回答 1

0

android:clickable属性定义您是否要允许用户与地图交互。如果这是"false"触摸地图,则不会执行任何操作。

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="API_KEY"
/>
于 2013-11-06T07:43:47.973 回答