在我的应用程序中,mapview 工作正常,但突然有一天,当我刚刚编写 xml 文件时,即使更改目标 sdk、清理重建以及删除 R.java 文件,错误也不会发生。还将styles.xml 文件更改为Theme.Light,但仍然显示错误。这是我用于 mapView 的 xml 以及清单文件。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".WAmIActivity" >
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0dtHyV-rxfPOpVnbG700kdJIIx3DIxRid59K_mg"
android:clickable="true"
android:enabled="true"
android:visibility="visible" />
</RelativeLayout>
Manifest file :-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mygooglemapactivity"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/SherlockTheme" >
<uses-library
android:name="com.google.android.maps"/>
<activity
android:name=".MainActivity"
android:label="MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainScreenActivity"
android:label="MainScreenActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>