“找不到样式地图样式”错误仍然存在
我已经在这个应用程序上工作了将近一年(高级项目),几天前它刚刚决定打破。我的应用程序是使用Eclipse版本3.7.2 64位开发的,针对Froyo Android 2.2,使用我的Windows 7 64位PC。到目前为止,我已经尝试过:
- 重新排列清单文件中的使用库标记
- 重写映射 xml 文件
- 删除 R.java 文件并刷新
- 将地图视图元素放置在布局中
- 重新安装 eclipse 和 android-sdk
- 清理项目
- 创建样式.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>
我非常感谢提前的任何帮助。