更新:(问题解决了) 最终它在我的 Intellij Idea 13
中工作问题是库未正确导入。 转到项目结构,选择模块,将库添加为现有来源的模块, 然后单击它,它将显示 Android 并将其检查为库模块,然后它将起作用
我在我的应用中使用Google Maps Android API Utility Library
。如果我创建一个GoogleMap实例并将相机移动到特定位置,它就可以了!代码可以在下面找到。
不幸的是,如果我调用mClusterManager = new ClusterManager<MyItem>(this, mMap);
并向其添加项目,应用程序将崩溃。有人可以帮忙吗?这是怎么回事?
public class MapActivity extends FragmentActivity{
private GoogleMap mMap;
private ClusterManager<MyItem> mClusterManager;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map);
setUpMapIfNeeded();
}
@Override
protected void onResume() {
super.onResume();
setUpMapIfNeeded();
}
private void setUpMapIfNeeded() {
if (mMap != null) {
return;
}
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
if (mMap != null) {
//if comment out mCLusterManager instantiation, the app works and show the map
//mClusterManager = new ClusterManager<MyItem>(this, mMap);
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(51.5, -0.35), 9));
}
}
}
下面是map.xml(从https://github.com/googlemaps/android-maps-utils获得)
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"/>
logcat中的错误:
10-02 18:13:08.667 2854-2854/your.androidclient E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: com.google.maps.android.clustering.ClusterManager
at your.androidclient.AndroidClientActivity.setUpMapIfNeeded(AndroidClientActivity.java:115)
at your.androidclient.AndroidClientActivity.onCreate(AndroidClientActivity.java:99)
at android.app.Activity.performCreate(Activity.java:5008)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
at android.app.ActivityThread.access$600(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:3)
文档告诉您使用:
compile 'com.google.maps.android:android-maps-utils:0.4+'
使用它会产生错误。你必须使用android-maps-utils:0.4.2
compile 'com.google.maps.android:android-maps-utils:0.4.2'
这将消除错误。
注意:我发布了另一个使用0.3+的答案,虽然0.4.2显然更好。无论哪种方式,0.4+都不起作用而其他方法都不起作用
答案 1 :(得分:2)
LogCat陈述
java.lang.NoClassDefFoundError: com.google.maps.android.clustering.ClusterManager
这意味着maps-utils-library不会添加到您的最终APK中。您是否将其添加为库(项目属性&gt; Android&gt;库)?
答案 2 :(得分:2)
使用以下方式编辑您的游戏服务:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services-maps:9.2.1'
compile 'com.google.android.gms:play-services-places:9.2.1'
compile 'com.google.maps.android:android-maps-utils:0.4+'
}