Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 android 中的地图应用程序。要使用一些手势方法,我需要导入以下内容,
import com.google.android.maps.GestureDetector;
但这显示了一个错误,例如“com.google.android.maps.GestureDetector 类型不可见”。问题是什么?请帮忙。
我认为你导入了错误的类,你应该导入 android.view.GestureDetector;
就像您写的“com.google.android.maps.GestureDetector 类型不可见”意味着该类未在公共范围内定义,因此它是内部类,不打算由“我们”使用