Android - Google Maps API v2 - SupportMapFragment Errors

旧街凉风 提交于 2019-12-18 19:06:04

问题


I am trying to get one of my apps back up and running with the Google Maps API v2 for the first time. I created a key for my app in my keystore, extracted the SHA1 hash, acquired an API key, then did the following in-app... I included:

google-play-services.jar

as well as importing the GooglePlayServices libraryand adding it as a reference to the project. In my Java code I simply just load the layout resource.

public class Times extends Activity{
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map);
    }
}

In the layout (res/layout/map.xml) that I am trying to instantiate I have:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

I also have the following declared in my manifest:

<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="tinyTech.us.ua.busschedule.permission.MAPS_RECEIVE" />

<permission
    android:name="tinyTech.us.ua.busschedule.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

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

And declared in the Application tag of the manifest:

<meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="My_API_Key" />

When the activity is loaded, it crashes with the following errors in LogCat:

FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: com.google.android.gms.R$styleable
    at com.google.android.gms.maps.GoogleMapOptions.createFromAttributes(Unknown Source)

I have attempted to research the problem, however I have been unable to find what I am looking for. Any and all help is greatly appreciated.


回答1:


You need to extend FragmentActivity if you are using SupportMapFragment. If you are using the MapFragment you can extend Activity.




回答2:


In your layout, use

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

instead of

...    
android:name="com.google.android.gms.maps.SupportMapFragment"
...



回答3:


You must do this:

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

}



回答4:


This worked for me: https://stackoverflow.com/a/13744765/1215098

Seems like you have to add Google Play services as module, not just as .jar




回答5:


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




回答6:


i had the same problem with Google Play Services and everything.. i included as a library and all, and the problem still persisted ("could not find com.google.android.gms.maps.suportmapfragment")..

i was able to fix it by: Going to Project Properties. Then select Java Build Path. Then Select Order and Export tab. then, Make sure you check the Android Dependencies and Android Private Libraries

Hope this helps :)




回答7:


I've added <uses-library android:name="com.google.android.maps" /> in the manifest file. This worked for me!




回答8:


I think i had the same problem it seems that newer versions you have to add this line at the manifest

<meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />



回答9:


My case, I add:

File -> New -> Google -> Google Maps Activity

And i follow this tutorial.



来源:https://stackoverflow.com/questions/13726189/android-google-maps-api-v2-supportmapfragment-errors

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!