谷歌地图v2出错

时间:2014-06-27 12:05:25

标签: java android xml google-maps

我正在尝试在我的应用上显示或查看谷歌地图。

  1. 我添加了库google_play_services_lib(没有错误)。
  2. 获取谷歌地图API密钥。
  3. 按照http://www.vogella.com/tutorials/AndroidGoogleMaps/article.html#overview_intro中的代码 (没有错误)。
  4. 但是在模拟器中运行应用程序,它停止了。它说“不幸的是ShowMapActivity已停止”。
  5. 我没有收到任何错误。我认为问题是在xml file.fragment不起作用。我现在应该怎么做。 PLZ帮助我或使用谷歌地图给我简单的示例项目。我是Android的谷歌地图的初学者,并试图修复它,但...... :(

    这是activity_main.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> 
    

    MainActivity.java文件:

        package com.vogella.android.locationapi.maps;
    
        import android.app.Activity;
        import android.os.Bundle;
        import android.view.Menu;
    
        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 Activity {
        static final LatLng HAMBURG = new LatLng(53.558, 9.927);
        static final LatLng KIEL = new LatLng(53.551, 9.993);
        private GoogleMap map;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        /*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);
        */  }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
        }
        }
    

    和AndroidManifest.xml文件:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.vogella.android.locationapi.maps"
    android:versionCode="1"
    android:versionName="1.0" >
    
    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="19" />
    
    <permission
        android:name="com.vogella.android.locationapi.maps.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />
    
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />
    
    <uses-permission  android:name="com.vogella.android.locationapi.maps.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.vogella.android.locationapi.maps.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.AIzaSyADyrVyRG68lvuQ0721D_Iaw0VLaeMjNuA"
            android:value="AIzaSyADyrVyRG68lvuQ0721D_Iaw0VLaeMjNuA" />
    </application>
    
     </manifest> 
    

3 个答案:

答案 0 :(得分:1)

meta-data文件中的AndroidManifest.xml替换为此文件。

<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyADyrVyRG68lvuQ0721D_Iaw0VLaeMjNuA" />

也添加此meta-data

<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

希望这能解决你的问题。

答案 1 :(得分:1)

最重要的是,您必须在真实设备中运行应用程序,而不是在模拟器中运行。如果您在安装google play service后没有任何真实设备尝试在Genymotion's emulator中运行您的应用,则模拟器没有安装google play service

您可以查看Running Google Maps v2 on the Android emulator.

你需要改变

<meta-data
     android:name="com.google.android.maps.v2.API_KEY"
     android:value="AIzaSyADyrVyRG68lvuQ0721D_Iaw0VLaeMjNuA" />

application tag

中添加此内容
<meta-data
      android:name="com.google.android.gms.version"
      android:value="@integer/google_play_services_version" />

答案 2 :(得分:0)

我发布我的地图片段作为参考。您可以添加缺少的属性,看看它是否有效。

<fragment
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/transparent"
    map:cameraZoom="11" />