启动MapActivity时出现问题

时间:2010-07-27 03:21:41

标签: android

当我尝试从HelloGoogleMaps教程启动相同的MapActivity时,我的应用程序强制关闭。我将从我的主要活动中启动它,这只是一个列表:

@Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);

        Intent i = new Intent(this, HelloGoogleMaps.class);
        startActivity(i);

    }

HelloGoogleMaps可以自行运行,而且这个类在我的清单中。我尝试使用调试器跟踪问题,并在创建我的Intent时崩溃。有什么想法吗?

感谢。

1 个答案:

答案 0 :(得分:1)

抱歉,想通了。我把头发拉了很长时间,然后在我发布这个问题后想出来。

我忘记了

<uses-library android:name="com.google.android.maps" />

在我的清单中。