Android谷歌地图教程

时间:2014-01-08 18:56:23

标签: android xml google-maps

我试过这个教程: http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/ 但应用程序崩溃没有错误。 我在log cat文件中有一些错误,但不知道它们是什么意思,请帮忙。 :(

PS:我无法想象有人发现了cat log的错误,还有其他办法吗?

编辑:Buggy页面不允许我发布代码...所以我将使用Dropbox文本文件。很抱歉给您带来不便。

https://www.dropbox.com/s/ftwdqtvd51inszb/log.txt

1 个答案:

答案 0 :(得分:2)

在您的活动中,这是:

 class MainActivity extends Activity

应该是:

 public class MainActivity extends Activity

解决异常:

Caused by: java.lang.IllegalAccessException: access to class not allowed

如果没有在类前面使用修饰符,子类和全局类就无法访问它。有关修饰符的更多常规信息: Controlling Access to Members of a Class