据我所知,这个问题在这里讨论了很多次,但是当我尝试时,我仍然遇到了同样的问题,并且都尝试了我在这里和谷歌看到的东西,但这个问题仍然没有解决。
另外,我尝试了很多站点的示例代码,也有同样的问题。(在MapActivity
派生类上,我可以看到grid
但地图没有加载,同时抛出上述异常)
我尝试了我自己API key
的以及示例代码中已经存在的键。并且,还尝试在设备中保持位置选项启用和禁用两者。
请给我你的帮助。
下面使用了一个清单文件...
**
<permission
android:name="com.Example.appl.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.Example.appl.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name="com.Example.appl.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MHomeActivity"></activity>
</application>
**