13

我尝试了在 android 中显示谷歌地图 v2 的演示。

java代码是,

package com.example.gpslocator;

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

public class MainActivity extends Activity {

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


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}    
}

Xml 代码是,

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

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

我在 manifest.xml 中添加了 API 密钥,

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

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

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

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

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

<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="com.example.gpslocator.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="MY_API_KEY" />
</application>

</manifest>

当我尝试运行我的应用程序时突然关闭。当我调试时,它向我显示了错误“java.lang.NoClassDefFoundError: com.google.android.gms.R$styleable”。我将 google-play-services.jar 文件添加到我的应用程序中。

logcat是,

04-09 05:33:53.677: E/Trace(1053): error opening trace file: No such file or directory (2)
04-09 05:33:53.807: W/ActivityThread(1053): Application com.example.gpslocator is waiting for the debugger on port 8100...
04-09 05:33:53.878: I/System.out(1053): Sending WAIT chunk
04-09 05:33:54.207: I/dalvikvm(1053): Debugger is active
04-09 05:33:54.288: I/System.out(1053): Debugger has connected
04-09 05:33:54.288: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:54.487: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:54.697: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:54.897: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:55.097: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:55.297: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:55.498: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:55.708: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:55.907: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:56.167: I/System.out(1053): waiting for debugger to settle...
04-09 05:33:56.367: I/System.out(1053): debugger has settled (1344)
04-09 05:34:06.097: W/dalvikvm(1053): VFY: unable to resolve static field 867 (MapAttrs) in Lcom/google/android/gms/R$styleable;
04-09 05:34:06.097: D/dalvikvm(1053): VFY: replacing opcode 0x62 at 0x000e
04-09 05:40:21.278: D/AndroidRuntime(1053): Shutting down VM
04-09 05:40:21.278: W/dalvikvm(1053): threadid=1: thread exiting with uncaught exception (group=0x40a71930)
04-09 05:40:21.398: E/AndroidRuntime(1053): FATAL EXCEPTION: main
04-09 05:40:21.398: E/AndroidRuntime(1053): java.lang.NoClassDefFoundError: com.google.android.gms.R$styleable
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.google.android.gms.maps.GoogleMapOptions.createFromAttributes(Unknown Source)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.google.android.gms.maps.MapFragment.onInflate(Unknown Source)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.Activity.onCreateView(Activity.java:4716)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:680)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:270)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.Activity.setContentView(Activity.java:1881)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.example.gpslocator.MainActivity.onCreate(MainActivity.java:12)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.Activity.performCreate(Activity.java:5104)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.ActivityThread.access$600(ActivityThread.java:141)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.os.Handler.dispatchMessage(Handler.java:99)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.os.Looper.loop(Looper.java:137)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at android.app.ActivityThread.main(ActivityThread.java:5041)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at java.lang.reflect.Method.invokeNative(Native Method)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at java.lang.reflect.Method.invoke(Method.java:511)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
04-09 05:40:21.398: E/AndroidRuntime(1053):     at dalvik.system.NativeStart.main(Native Method)
04-09 05:40:26.487: I/Process(1053): Sending signal. PID: 1053 SIG: 9

在属性-->Android-->

在此处输入图像描述

请任何人帮助我。我错过了任何参考吗?

4

10 回答 10

29

在此处查看答案:
Google Maps Android API v2 - 示例代码崩溃
虽然问题列出了不同的异常,但答案特别提到了您的确切问题。

google-play-services_lib具体来说,作为项目导入很重要 :
选择File > Import > Android > Existing Android Code Into Workspace并单击下一步。
选择浏览...,输入[android-sdk-folder]/extras/google/google_play_services/libproject/google-play-services_lib,然后单击完成。
(请参阅“示例代码”下的https://developers.google.com/maps/documentation/android/intro
) 然后按照链接答案中的说明进行操作:

  • 导入“google-play-services_lib”项目的实际源并将其链接为 > Android库。
    • 通过 Project -> Properties -> Android -> Library, Add -> google-play-services_lib 执行此操作(您可以右键单击您的项目并选择 Properties,然后选择 Android)。
    • 不要通过您的项目的“Java 构建路径”其添加为依赖项目,这对我不起作用。
于 2013-04-09T05:54:16.663 回答
6

检查AndroidManifest.xml您的 google-play-services_lib 项目的文件。应该:

package="com.google.android.gms"
于 2013-04-22T21:59:17.043 回答
1

导入google-play-services_lib时,选中“将项目复制到工作区”。这个对我有用!

于 2013-05-24T06:15:24.017 回答
1

我遇到了同样的问题,我可以通过右键单击 google-play-services_lib 项目并刷新来解决它。由于某种原因,该项目未与导致错误的 Eclipse 同步。

于 2013-06-14T15:40:35.627 回答
1

我有同样的问题。

但我所做的是我使用了 com.google.android.gms 版本代码这个 3265130

而不是使用com.google.android.gms版本代码这个4452000,这是最新的,我不知道问题是什么但它对我有用。

[按照亚历山大给出的步骤]

可能适用于新的更新。

在此处输入图像描述

可能适用于新的更新。

在此处输入图像描述

于 2014-05-21T12:55:35.670 回答
0

项目的文件路径google-play-services_lib必须只有[A-Z,a-z]not ÄÖÜ。我已经把它移到D:\google-play-services_lib\了新的地方,然后它就可以工作了!

对不起我的英语不好 ;-)

于 2013-05-05T20:14:43.843 回答
0

将 google-play-services_lib 和演示项目都导入工作区;将 android-support-v4.jar 处理到演示项目下的“libs”文件夹;然后:项目属性->android->library”,然后添加 google-play-services_lib

于 2013-09-02T11:31:49.877 回答
0

查看 John Oleynik 的步骤:www.stackoverflow.com/a/15709686/20146。这对我有用。

于 2014-01-11T16:08:18.130 回答
0

将项目 google-play-services_lib 导入 IDE 后,不要忘记检查其属性。google-play-services_lib 应使用您用于项目的相同版本的 Android SDK 构建。例如,您的项目和 google-play-services 都是使用 Android 4.4.2 构建的。之后,您应该会看到该库已正确构建。

最后,您应该将以下元标记添加到标记内的 AndroidManifest.xml 中<application> ... </application>

<meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
于 2014-02-03T18:24:52.147 回答
0

我对那张地图有很多问题。但最终成功,构建!我不使用eclipse,只使用命令行。首先,我认为我只是从 google-play-services_lib/libs 复制到 myProject/libs/ 文件并 ececute ant 调试......在 android 模拟器上安装后,我收到错误java.lang.NoClassDefFoundError: com.google.android.gms。 R$styleable

数小时后搜索解决方案:

1)首先我将目录 sdk/extras/google/.../google-play-services_lib 复制到我的 myProject 目录。

2)做一个android update project --target <your target> -p myProject/google-play-services_lib像用户dzeikei说的(检查目标exec android list target:)

3)编辑文件夹myProject中的文件“project.properties”,并在最后添加这一行 android.library.reference.1=google-play-services_lib 或执行android update project --target android-19 --path myProject --library myProject/google-play-services_lib

4) ant clean, ant debug.... 但有一些错误,例如返回 null 等(让人头疼)。但在那之后,蚂蚁在 myProject/google-play-services_lib 文件夹中创建 bin 和 gen 文件夹

5) 搜索了许多解决方案,以找出为什么 ant debug 返回错误,我最终将目录 bin 和 gen 从 myProject/google-play-services_lib/ 复制到 myProject/bin 和 myProject/gen

6)然后删除我之前在第 3 点添加的行#android.library.reference.1=google-play-services_lib,并将文件 myProject/google-play-services_lib/libs/google-play-services.jar 复制到myProject/libs/google-play-services.jar

7)执行ant debug

adb install -r bin/myProject-debug.apk

最后在我的android模拟器上的projectApplication中看到了谷歌地图:)

当然还有其他东西,比如 API_KEY 或者我在编译项目之前完成的谷歌地图教程中的添加和权限。无需提示即可查看地图,例如。“安装 Goodle Play 服务”使用模拟器和已安装的谷歌服务。我使用了 AVD Manager 列表中的 Google API(Google Inc.)。我希望这对你有帮助。

于 2014-09-27T10:19:10.783 回答