0

我目前正在做一个包含 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>

4

2 回答 2

0

将您的 Layout 更改为 RelativeLayout 并删除此行</com.google.android.maps.MapView>
像这样放置它,没有布局 id,如下所示:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
     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:enabled="true"
                 android:clickable="true"
                 android:apiKey="api key" />

</RelativeLayout>
于 2012-09-06T21:34:13.860 回答
0

您需要将主类扩展为 MapActivity

public class Abc extends MapActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }
}
于 2012-09-06T10:07:55.053 回答