我目前正在做一个包含 googlemap 的应用程序。该 xml 文件的代码如下所示,但在图形布局中显示错误
“缺少样式。是否为此布局选择了正确的主题?使用布局上方的主题组合框来选择不同的布局,或修复主题样式参考。
在当前主题中找不到样式“mapViewStyle””
运行 googlemap 时,它在 logcat 中显示错误为
java.lang.RuntimeException:无法启动活动 ComponentInfo{com.iqmobi/com.iqmobi.Map}:android.view.InflateException:二进制 XML 文件第 3 行:膨胀类 com.google.android.maps.MapView 时出错
xml 和清单文件如下所示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/myMapView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="0mRN-6bSm63hZJtPZSmcjoZAzdCztLnZv-O4SZw"
>
</com.google.android.maps.MapView>
</LinearLayout>
清单.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.iqmobi"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="9"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/iconffff"
android:label="@string/app_name" >
<uses-library android:name="com.google.android.maps" />
<activity
android:label="@string/app_name"
android:name="com.iqmobi.Map"
android:screenOrientation="portrait"
>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>