我尝试了在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
在属性中 - &gt; Android - &gt;
请任何人帮助我。我错过了任何参考?
答案 0 :(得分:29)
见答案:
Google Maps Android API v2 - Sample Code crashes
虽然问题列出了一个不同的例外,但答案明确提到了您的确切问题。
具体而言,将google-play-services_lib
导入项目非常重要:
选择File > Import > Android > Existing Android Code Into Workspace
,然后单击“下一步”。
选择Browse ...,输入[android-sdk-folder]/extras/google/google_play_services/libproject/google-play-services_lib
,然后单击Finish
(参见“示例代码”下的https://developers.google.com/maps/documentation/android/intro)
然后按照链接答案中的说明操作:
- 导入“google-play-services_lib”项目的实际来源,并将其链接为&gt; Android 库。
- 通过Project执行此操作 - &gt;属性 - &gt; Android - &gt;图书馆,添加 - &gt; google-play-services_lib(您可以右键单击您的项目并选择“属性”,然后选择“Android”)。
- 不通过项目的“Java构建路径”将其添加为依赖项目,这对我不起作用。
答案 1 :(得分:6)
检查google-play-services_lib项目的AndroidManifest.xml
个文件。应该是:
package="com.google.android.gms"
答案 2 :(得分:1)
导入 google-play-services_lib 时,请选中“将项目复制到工作区”。它对我有用!
答案 3 :(得分:1)
我遇到了同样的问题,我可以通过右键点击google-play-services_lib项目并刷新来解决这个问题。由于某种原因,该项目未与Eclipse同步,导致错误。
答案 4 :(得分:1)
我有同样的问题。
但我所做的是使用com.google.android.gms版本代码3265130
不是使用com.google.android.gms版本代码这个4452000,这是最新版本,我不知道问题是什么,但它对我有用。
[按照亚历山大给出的步骤]
可以使用新的更新。
可以使用新的更新。
答案 5 :(得分:0)
google-play-services_lib
项目的文件路径必须只有[A-Z,a-z]
而不是ÄÖÜ
。我已将其移至D:\google-play-services_lib\
而不是将其导入新版本并且有效!
对不起我的英文; - )
答案 6 :(得分:0)
导入google-play-services_lib&amp;演示项目到工作区; 将android-support-v4.jar应用于演示项目下的“libs”文件夹;然后:项目属性 - &gt; android-&gt;库“然后添加google-play-services_lib
答案 7 :(得分:0)
看看John Oleynik的步骤:www.stackoverflow.com/a/15709686/20146。 这对我有用。
答案 8 :(得分:0)
当您将项目google-play-services_lib导入IDE时,请不要忘记检查其属性。 google-play-services_lib应使用您用于项目的相同版本的Android SDK构建。例如,您的项目和google-play-services都是使用Android 4.4.2构建的。之后你应该看到lib是正确构建的。
最后,您应该将以下元标记添加到<application> ... </application>
标记内的AndroidManifest.xml中:
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
答案 9 :(得分:0)
我的地图有很多问题。但最终成功,建立! 我不使用eclipse,只需命令行。 首先我强调我只是从google-play-services_lib / libs复制到myProject / libs /文件并执行ant debug ...在android模拟器上安装后我收到错误 java.lang.NoClassDefFoundError:com.google.android .gms.R $设置样式强>
一天后的小时解决方案:
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)编辑文件&#34; project.properties&#34;在文件夹myProject中,并在最后添加此行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等(使头疼)。但在那之后,ant在文件夹myProject / google-play-services_lib
5)ater搜索许多解决方案多年来为什么蚂蚁调试返回错误我finaly片断,只是将目录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中看到谷歌地图:)
当然其他stuf就像API_KEY或谷歌地图教程中的添加和权限我在编译项目之前完成的。 要查看没有promt的地图,例如。 &#34;安装Goodle Play服务&#34;使用已经安装的谷歌服务的模拟器。我在AVD Manager列表中使用了Google API(Google Inc.)。 我希望这能帮到你。