无法在模拟器和设备上加载Android Mapview活动

时间:2013-07-06 12:42:52

标签: java android xml

我正在尝试在我的模拟器和设备上加载mapview

我已经尝试了两天,但有一段时间我只得到没有任何地图的网格线,有时会出现致命错误而我的应用程序无法在我的模拟器和设备上启动。

我尝试了所有内容,每个代码都存在于互联网上,但没有任何作用。 你是我最后的希望。

我按照site

中所述的步骤进行操作

我从here

获取了我的API密钥

我已尽我所能。请告诉我这个过程是否正确,那我该怎么办。我正在为Gingerbread 2.3.3(API 10)做这件事。

等待答案谢谢。

我的日志猫: 07-06 02:12:45.692:E / AndroidRuntime(3020):java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.maps / com.example.maps.MainActivity}:android.view.InflateException:Binary XML文件行#2:错误膨胀类片段

我的AndroidMenifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.maps"
android:versionCode="1"
android:versionName="1.0" >

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <!-- The following two permissions are not required to use
        Google Maps Android API v2, but are recommended. -->
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true"/>

<uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="10" /> 

<application   
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <activity
        android:name=".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>
 <meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AEdPqrEAAAAI5QAuDgiTRjyU-y_MK-ZRQqBaN_VoLb4gADuCwA"/>
</application>

我的Main.xml

 <fragment
 xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/map"
   android:name="com.google.android.gms.maps.MapFragment"
   android:layout_width="match_parent"
   android:layout_height="match_parent" 
    tools:context=".MainActivity" 
xmlns:tools="http://schemas.android.com/tools" />

我的MainActivity.Java

package com.example.maps;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import android.os.Bundle;

public class MainActivity extends MapActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    MapView view = (MapView) findViewById(R.id.map);
    view.setBuiltInZoomControls(true);  
}

@Override
protected boolean isRouteDisplayed() {
    // TODO Auto-generated method stub
    return false;
}
}

2 个答案:

答案 0 :(得分:0)

在main.xml中

应该不是

android:name="com.google.android.gms.maps.MapFragment"

class="com.google.android.gms.maps.MapFragment"

答案 1 :(得分:0)

嗯,您正在使用片段,但在MapView中加载它。这就是您获得RuntimeException的原因,因为无法将片段膨胀到MapView对象中。 MapView是android maps API版本1中支持的旧类,现在已弃用。

来自您引用的开发网站:

  

注意:Google Maps Android API v2使用新的管理密钥系统。 Google Maps Android v1应用程序(通常称为MapView)中的现有密钥不适用于v2 API。

您的活动实际上应该扩展MapFragment,您应该使用FragmentManager或SupportFragmentManager来扩充您的地图。

public class MyActivity extends FragmentActivity {
   private GoogleMap mMapView;
   private SupportMapFragment mFragment;


   @Override
   protected void onCreate() {
     super.onCreate();
     FragmentManager fragmentManager = getSupportFragmentManager();
     mFragment = ((SupportMapFragment) fragmentManager.findFragmentById(R.id.map));
     mMapView = mFragment.getMap();
     mMapView.getUiSettings().setZoomControlsEnabled(true);
     // configure other settings of map view
   }
}

此外,布局xml中类的名称也应该是SupportMapFragment,如下所示:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/map"
  android:name="com.google.android.gms.maps.SupportMapFragment"
  android:layout_width="match_parent"
  android:layout_height="match_parent" 
  tools:context=".MainActivity" 
  xmlns:tools="http://schemas.android.com/tools" />

您可以在此处找到更多信息:https://developers.google.com/maps/documentation/android/intro