我已经在这个应用程序上工作了将近一年(高级项目),几天前它刚刚决定中断。我的应用程序是使用面向 Froyo Android 2.2 的 Eclipse 版本 3.7.2 64 位开发的,使用的是我的 Windows 7 64 位电脑。到目前为止,我已经尝试过:
- 重新排列清单文件中的 uses-library 标签
- 重写地图xml文件
- 删除 R.java 文件并刷新
- 将 mapview 元素放置在布局中
- 重新安装eclipse和android-sdk
- 清理项目
- 创建一个 style.xml 文件并引用它
- 在实际设备上部署
- 恢复到以前的代码
可能还有更多……
我的代码如下:gmap.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="0xMbgnc-el963gCdpl547hdkgXUILTskZr-T5uvg" // random key posted here
/>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.PubMe"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-sdk android:minSdkVersion="8"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".PubMeActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MappingActivity"
android:label="@string/app_name">
</activity>
</application>
</manifest>
我非常感谢您提前提供的任何帮助。