Android应用程序上的Google Map无效

时间:2013-10-01 06:53:53

标签: android

这里是所有代码。当我在模拟器上运行它时,应用程序将关闭。您可以看到我使用API​​密钥的代码和所有程序,但代码不起作用。请帮我解决这个问题。

我的XML清单代码:

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

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

     <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.example.mapviewdemo.MapViewDemoActivity"
            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="AIzaSyDmaJlrUz8hDT2GC56glG9cXnXwZeotluo"/>    
    </application>

</manifest>

我的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 xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportmapFragment"/>
</RelativeLayout> 

我的Java代码:

     package com.example.mapviewdemo;

        import android.os.Bundle;
        import android.app.Activity;
        import android.view.Menu;

        public class MapViewDemoActivity extends android.support.v4.app.FragmentActivity {

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



}

4 个答案:

答案 0 :(得分:1)

尝试使用此链接下的示例代码步骤:https://developers.google.com/maps/documentation/android/intro并查看您是否遇到同样的问题。

答案 1 :(得分:1)

您的包裹名称是

package="com.example.mapviewdemo"

但是你的包名是使用的权限是错误的

<uses-permission android:name="com.example.mapviewdemo.permission.MAPS_RECEIVE" />
<permission
    android:name="com.example.mapviewdemo.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

根据您不需要这些权限的文档,您可以删除上述权限。

了解更多信息

https://developers.google.com/maps/documentation/android/start

另外请确保您正确引用了Google Play服务库项目,并确保在google api控制台中启用了Android的地图。谷歌地图api v2也是gooogle游戏服务的一部分。因此,您需要在设备上使用相同的内容

从文档引用

http://developer.android.com/google/play-services/setup.html

如果您要在模拟器上测试您的应用,请展开Android 4.2.2(API 17)或更高版本的目录,选择Google API并进行安装。然后使用Google API作为平台目标创建一个新的AVD。

注意:只有Android 4.2.2及更高版本的Google API平台才包含Google Play服务。

如果您需要进一步的帮助,最好发布logcat。

答案 2 :(得分:1)

您需要使用项目的包名称正确定义权限:

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

现在您可以将此定义权限用作:

<uses-permission android:name="com.example.mapviewdemo.permission.MAPS_RECEIVE" />

注意: 此权限现在完全没有必要。 Google Play服务3.1.59的最新更新使其毫无用处。因此,它可以被删除。

地图示例代码:

如果您想学习和浏览Google Maps API v2,那么您应该下载并运行sample codes given in Google Play Services SDK

答案 3 :(得分:0)

实际上,Activity中缺少代码,可以帮助您渲染地图。对于崩溃日志猫是必需的

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

    if (map!=null){
      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)));
    }

它会提供一些编译错误,您需要用资源替换