作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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.
/>
HelloGoogleMaps list
<?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
EDIT 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.
EDIT 3 它现在安装但应用程序在模拟器中意外退出。
最佳答案
关闭所有模拟器。重新启动 Eclipse。刷新您的项目。右键单击您的项目,将鼠标悬停在 Android 工具上并选择修复项目属性。查找不是您创建的空白 XML 文件,如果存在则将其删除。
其中一个应该可以工作。
关于java - 安卓安装异常 : EOF Google MapsView "Hello Maps",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5837895/
我有一个 map View ,在使用 getMap() 时它工作正常,尽管它向我显示了一个贬值的警告。但是当我将 getMap() 更改为 getMapAsync() 时,应用程序将崩溃。 这是我的代
Eclipse 没有指出我的代码中的任何错误。当我尝试运行模拟器时出现异常。这是我的所有代码。 HelloGoogleMaps.java package com.example.hellogoogle
我是一名优秀的程序员,十分优秀!