Eclipse没有在我的代码中指出任何错误。我试图运行模拟器时遇到异常。这是我的所有代码。
HelloGoogleMaps.java
package com.example.hellogooglemaps;
import android.app.Activity;
import android.os.Bundle;
import com.google.android.maps.*;
import android.widget.LinearLayout;
import android.widget.ZoomControls;
public class HelloGoogleMaps extends MapActivity
{
LinearLayout linearLayout;
MapView mapView;
ZoomControls mZoom;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
}
main.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="my_api_key" //I have this in my program. Just not putting it in post.
/&GT;
HelloGoogleMaps清单
<?xml version="1.0" encoding="utf-8"?>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".HelloGoogleMaps"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
编辑调试显示以下内容:
ERROR: the user data image is used by another emulator. aborting
编辑2 控制台也会发出此警告:
Warning once: This application, or a library it uses, is using NSQuickDrawView, which has been deprecated. Apps should cease use of QuickDraw and move to Quartz.
编辑3 它现在安装,但应用程序在模拟器中意外退出。
答案 0 :(得分:1)
关闭所有模拟器。重启Eclipse。刷新您的项目。右键单击您的项目,将鼠标悬停在Android工具上,然后选择修复项目属性。查找未创建的空白XML文件,如果存在则将其删除。
其中一件事应该有用。
答案 1 :(得分:1)
一步一步地做:
如果这不能解决问题,请从模拟器中删除该应用并尝试重新启动它。
如果不能解决问题,您应该尝试删除AVD并创建一个新的...