0

我正在使用 android 中的地图应用程序。要使用一些手势方法,我需要导入以下内容,

import com.google.android.maps.GestureDetector;

但这显示了一个错误,例如“com.google.android.maps.GestureDetector 类型不可见”。问题是什么?请帮忙。

4

2 回答 2

0

我认为你导入了错误的类,你应该导入 android.view.GestureDetector;

于 2012-05-22T11:53:23.597 回答
0

就像您写的“com.google.android.maps.GestureDetector 类型不可见”意味着该类未在公共范围内定义,因此它是内部类,不打算由“我们”使用

于 2013-01-10T22:42:53.593 回答