0

xml

<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"
tools:context=".MainActivity" >

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.MapFragment" />

  </RelativeLayout>

活动

 package com.example.googlemap;
 import android.annotation.SuppressLint; 
 import android.os.Bundle;
 import android.support.v4.app.FragmentActivity;

 import com.google.android.gms.maps.CameraUpdateFactory;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.MapFragment;
 import com.google.android.gms.maps.model.BitmapDescriptorFactory;
 import com.google.android.gms.maps.model.LatLng;
 import com.google.android.gms.maps.model.Marker;
 import com.google.android.gms.maps.model.MarkerOptions;


 public class MainActivity extends FragmentActivity {

  static final LatLng HAMBURG = new LatLng(53.558, 9.927);
  static final LatLng KIEL = new LatLng(53.551, 9.993);
  private GoogleMap map;
//@SuppressLint("NewApi")

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

    // SupportMapFragment fragment = new SupportMapFragment();
      //  getSupportFragmentManager().beginTransaction()
         //       .add(android.R.id.content, fragment).commit();
    map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))   .getMap();
        Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG)
            .title("Hamburg"));
        Marker kiel = map.addMarker(new MarkerOptions()
            .position(KIEL)
            .title("Kiel")
            .snippet("Kiel is cool")
            .icon(BitmapDescriptorFactory
                .fromResource(R.drawable.ic_launcher)));

        // Move the camera instantly to hamburg with a zoom of 15.
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));

        // Zoom in, animating the camera.
        map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);

}

}

显现

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

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


<permission
    android:name="com.example.googlemap.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

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

<uses-permission android:name="com.example.googlemap.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission    android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.googlemap.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="AIzaSyCcdbqI_CdaghJQ7VTeXIE1djmnlfZq_Qs" />
  </application>

</manifest>

但代码不起作用,这样的错误

java.lang.RuntimeException:无法启动活动 ComponentInfo{com.example.googlemap/com.example.googlemap.MainActivity}:android.view.InflateException:二进制 XML 文件第 7 行:膨胀类片段时出错

4

3 回答 3

1

确保您的模拟器支持 Google api。

如果不是启动包括 Google api 在内的新模拟器并使用这个新模拟器运行您的代码。

于 2013-01-22T09:13:45.003 回答
0

我同意 Pratik 检查您的 Google Play 服务库是否已首先添加到您的项目中。

如果它已经在您的项目中,那可能是因为您的 minSDKversion 只有 8 并且不是至少 11 才能使 MapFragment 工作,因此您需要使用 SupportMapFragment 而不是使用 MapFragment。

map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

需要更改为 SupportMapFragment 等:

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.MapFragment" />
于 2013-01-22T10:13:55.960 回答
0

Google Map v2需要Google Play Services运行并且模拟器不包含 AFAIK,因此Google Play Services您无法在模拟器中运行谷歌地图。

要在您的应用程序中使用 Google Maps Android API v2,您首先需要安装 Google Play 服务 SDK。

欲了解更多详情,请查看链接

于 2013-01-22T09:08:03.877 回答