Android:我可以在我的包中找到课程

时间:2012-12-10 14:14:47

标签: android eclipse class package

我正在关注此主题:Why retrieving Google Directions for Android using KML data is not working anymore?

但我陷入了一个难以理解的错误。当我尝试引用我的类RouteOverlay时出现问题:我可以引用我之前创建的类(RouteOverlay.java)。这里的情况:

enter image description here

如果我尝试插入代码行:

  import maps.RouteOverlay 

我收到以下错误:

 The type maps.RouteOverlay is not visible

我也尝试过,重新启动Eclipse或清理项目。我不知道我能做什么!

1 个答案:

答案 0 :(得分:2)

您要复制的示例有拼写错误。 RouteOverlay课程不公开。

class RouteOverlay extends Overlay {}

将其更改为:

public class RouteOverlay extends Overlay {}