53

我正在使用谷歌地图创建一个 android 应用程序。这是代码:

MapFragActivity.java

 import android.os.Bundle;
    import android.support.v4.app.FragmentActivity;
    import com.google.android.gms.maps.GoogleMap;
    import com.google.android.gms.maps.SupportMapFragment;

    public class MapFragActivity extends FragmentActivity {

    private GoogleMap map;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_map_frag);

        map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                .getMap();
     }
    }

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.him.mapfrag_rnd"
        android:versionCode="1"
        android:versionName="1.0" >

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


        <permission
            android:name="com.him.mapfrag_rnd.permission.MAPS_RECEIVE"
            android:protectionLevel="signature" />

        <uses-permission android:name="com.him.mapfrag_rnd.permission.MAPS_RECEIVE" />
        <uses-permission android:name="android.permission.INTERNET" />
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
        <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

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


        <application
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MapFragActivity"
                android:label="@string/title_activity_map_frag" >
                <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="my_api_key" />

        </application>

    </manifest>

activity_map_frag.xml:

<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" >

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

    </RelativeLayout>

当我尝试此代码时出现错误,这是日志:

01-17 10:01:17.685: E/AndroidRuntime(8923): FATAL EXCEPTION: main
    01-17 10:01:17.685: E/AndroidRuntime(8923): java.lang.NoClassDefFoundError: com.google.android.gms.R$styleable
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.google.android.gms.maps.GoogleMapOptions.createFromAttributes(Unknown Source)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.google.android.gms.maps.SupportMapFragment.onInflate(Unknown Source)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:279)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:669)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.view.LayoutInflater.rInflate(LayoutInflater.java:739)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:272)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.Activity.setContentView(Activity.java:1835)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.him.mapfrag_rnd.MapFragActivity.onCreate(MapFragActivity.java:16)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.Activity.performCreate(Activity.java:4470)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1052)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1931)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1992)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.ActivityThread.access$600(ActivityThread.java:127)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1158)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.os.Handler.dispatchMessage(Handler.java:99)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.os.Looper.loop(Looper.java:137)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at android.app.ActivityThread.main(ActivityThread.java:4511)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at java.lang.reflect.Method.invokeNative(Native Method)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at java.lang.reflect.Method.invoke(Method.java:511)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:986)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:753)
    01-17 10:01:17.685: E/AndroidRuntime(8923):     at dalvik.system.NativeStart.main(Native Method)

当我在 MapFragActivity.java 中进行一些更改时,会显示地图。以下是更改:

package com.him.mapfrag_rnd;

    import android.os.Bundle;
    import android.support.v4.app.FragmentActivity;

    import com.google.android.gms.maps.SupportMapFragment;

    public class MapFragActivity extends FragmentActivity {

        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            //setContentView(R.layout.activity_map_frag);
          SupportMapFragment fragment = new SupportMapFragment();
          getSupportFragmentManager().beginTransaction().add(android.R.id.content, fragment).commit();
        }
    }

我所做的更改被注释为 setContentView。我已遵循所有必需的步骤,但我仍然遇到错误。如果取消注释 setContentView() 那么我再次收到错误消息。

请帮忙!!!

4

12 回答 12

74

如果您使用 Intellij Idea,

  1. 从项目面板中选择您的项目
  2. 按 F4 打开项目结构窗口
  3. 从左侧面板中选择模块,然后点击 + 按钮,然后选择“导入模块”并导航到“ ANDROID-SDK ”/extras/google/google_play_services/libproject/google-play-services_lib。通过这样做,这个项目将与您的项目一起添加到模块中
  4. 选择您的项目,然后从右侧面板中选择“依赖项”(它是一个选项卡)。单击 + 按钮,然后单击“3 Module dependencies...”并选择“google-play-services_lib”。
  5. 再次单击 + 按钮,然后单击“1 jars 或目录...”并导航到上述路径中的“/libs”文件夹并选择“google-play-services.jar”。
  6. 单击确定并关闭项目结构窗口。

注意:确保您没有在“库”中添加“google-play-services_lib”项目作为库(模块下的左侧面板)。如果有,您可以转到“并简单地删除它。Google Play 库不应出现在库中。

注意 2:如果您希望将其用于版本控制或类似的项目,您可以将整个 google-play-services_lib 目录复制到您自己的项目中。

于 2013-04-05T05:48:32.317 回答
40

您需要做的是在您的项目中包含一个 Google Play 服务库。谷歌在这里有很好的说明:

此外,在尝试让 Google Maps v2 工作时,我发现有一个快速入门非常有用。

于 2013-02-01T03:00:39.367 回答
6

I think you have to import the whole Google Play Service library to your IDE, not only the .jar

try it ;-)

于 2013-01-18T19:21:36.867 回答
6

我有同样的错误。我使用 Android Studio 和 Gradle,因此没有太多需要配置或改进的东西。我做了几乎所有的事情,但它们都不适合我。最后一个有效:用较小的替换整个包播放服务。就我而言:

替换(在 build.gradle 文件中):

compile 'com.google.android.gms:play-services:8.4.0'

经过:

// Google Cloud Messaging
compile 'com.google.android.gms:play-services-gcm:8.4.0'

// Google Location
compile 'com.google.android.gms:play-services-location:8.4.0'
于 2016-03-03T23:06:13.330 回答
6

我在 android studio 中也遇到了这个错误,我已经包含了带有 gradle alpha5 的 play services alpha 3,我做错的是我包含了 multidex。

在毕业

multiDexEnabled 真

并在 Application 类的 onCreate

MultiDex.install(this);

但我忘了用 MultiDexApplication 扩展 Application 类

因为 MultiDexApplication 尚未扩展,因此它不能包含 gms 和任何其他 dex 类,因此它在 gms 字符串开始时出错。

希望会有所帮助

于 2016-04-07T14:52:37.843 回答
5

我通过首先检查播放服务库是否正确添加并将此数据添加到应用程序标签下的清单文件中来解决了这个问题<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

于 2014-02-11T08:48:44.383 回答
4

Check AndroidManifest.xml file of your google-play-services_lib project. Should be:

package="com.google.android.gms"
于 2013-04-22T21:41:20.067 回答
2
  1. 使用 Android SDK Manager 下载“google play services”

  2. 将其导入您的工作区(路径:android-sdk root/extras/google/google_play_service/libproject/google-play-service_lib)

  3. 项目属性 -> android -> 库添加 google-play-service_lib

  4. Build path -> Order and Export 检查Android私有库

于 2013-05-30T10:15:33.760 回答
1

I solved this error by checking "Copy projects into workspace" while importing the Google Play Services lib.
More info here: http://developer.android.com/google/play-services/setup.html

于 2013-04-20T07:49:10.570 回答
1

我已经关注了链接 http://www.vogella.com/tutorials/AndroidGoogleMaps/article.html

并将 google-play-services_lib 库项目添加到我的应用程序中。到昨天为止,它工作得很好。但是今天我遇到了上面提到的例外。这是因为没有 google play 库或者我的项目无法访问库中的文件。我重建了我的项目,但没有成功。然后我重建了 google-play-services_lib 库项目,但没有希望。然后我在eclipse中尝试了“build all”选项,它工作正常。

在此处输入图像描述

于 2015-02-12T13:26:29.030 回答
1

如果您使用拆分 Google Play 服务(请参见此处:https ://developers.google.com/android/guides/setup#split )

您必须将基本播放服务包含到您的 gradle 文件中:

compile 'com.google.android.gms:play-services-base:7.5.0'

使用 slipt Play Services 可防止 65k 错误并使您的应用程序更小

于 2015-07-08T00:46:11.963 回答
1

这两个谷歌播放服务添加到 build.gradle 它对我有用.. compile 'com.google.android.gms:play-services-appindexing:8.1.0' compile 'com.google.android.gms:play-services :8.1.0'

于 2015-12-24T12:21:45.353 回答