actionbarsherlock-map

Actionbarsherlock Google Maps not showing tiles

折月煮酒 提交于 2019-12-24 14:12:12
问题 I am trying to get a Google Map with a static actionbarsherlock. I have done it but the map is not loaded (no tiles are loaded). I am sure that my Google Map key is correct, and I don't know what is the problem. Can you help me? In the zip file there is my little project. http://www.michelepierri.it/DEMOCHOOSER.zip this is my code: MapSimple.java package com.actionbarsherlock.sample.maps; import com.actionbarsherlock.ActionBarSherlock; import com.actionbarsherlock.app2.SherlockMapActivity;

Multiple Map fragment in action bar tab

时光毁灭记忆、已成空白 提交于 2019-12-12 00:50:48
问题 Basically what i am trying to do is Tab1 -> Organisation Map Fragment Tab2 -> City Map How should I go about doing this. I tried following some tutorials but it gives me the error "You are allowed to have single MapView in a MapViewActivity". Can some one please help me out 回答1: It's not possible to do this. As the message says, only one map per Activity. 回答2: As Joe and the error message says, you can only have one mapview in a single activity. What you could do (if you still want to use

ActionBarSherlock + GoogleMaps v2 map not shown (without map log errors)

家住魔仙堡 提交于 2019-12-11 15:39:52
问题 I just settled my project for supporting Android Maps v2 + ActionBarSherlock, as this answer says: http://facebook.stackoverflow.com/a/13727539/689723 Ok, I was fighting for not getting the typical XML error, and I could finally get the fragment without errors. I'm pretty sure my AndroidManifest is ok. My log is: 01-21 00:43:03.455: D/dalvikvm(4990): GC_CONCURRENT freed 311K, 8% free 13870K/14983K, paused 1ms+3ms, total 20ms 01-21 00:43:03.455: D/dalvikvm(4990): WAIT_FOR_CONCURRENT_GC blocked

android backup agent and SherlockMapActivity

孤街醉人 提交于 2019-12-11 05:53:34
问题 I try to implement a Backup Agent in my Android app, and I've got a weird issue every times it restore (at first launch) : Unable to resolve superclass of Lcom/actionbarsherlock/app/SherlockMapActivity; (916) Link of class 'Lcom/actionbarsherlock/app/SherlockMapActivity;' failed Unable to resolve superclass of Lnet/myapp/activity/impl/MapActivity; (674) Link of class 'Lnet/myapp/activity/impl/MapActivity;' failed Could not find class 'net.myapp.activity.impl.MapActivity', referenced from

Having an issue with GoogleMap v2 crashing app on orientation change

两盒软妹~` 提交于 2019-11-27 08:08:16
问题 I've been dealing with this problem for a while now. I used this question as a reference: Using ActionBarSherlock With the New SupportMapFragment I'm currently using ActionBarSherlock and I'm using Vipul Shah's rather simple implementation of a map. It works brilliantly, does exactly what I need it to. However, on Orientation change, the entire app crashes. Here is my log: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.meetball_1/com.meetball_1.HomeActivity}: android

Using ActionBarSherlock With the New SupportMapFragment

我只是一个虾纸丫 提交于 2019-11-26 21:33:16
I am looking at using ActionbarSherlock but have one query that's holding me back. So my application needs to be fully backwards compatible to API Level 7. I need to implement the new Google Maps in my application and to do that I need to use the SupportMapFragment class. ** My Question ** Is it possible to use the SupportMapFragment class alongside ActionBarSherlock ? Thanks in advance EDIT I have downloaded and had a look at the library. The only changes to the extended Fragments I can see are very simple and the same for all of them. Do you think I could add support myself? here is how they

Using ActionBarSherlock With the New SupportMapFragment

﹥>﹥吖頭↗ 提交于 2019-11-26 07:58:29
问题 I am looking at using ActionbarSherlock but have one query that\'s holding me back. So my application needs to be fully backwards compatible to API Level 7. I need to implement the new Google Maps in my application and to do that I need to use the SupportMapFragment class. ** My Question ** Is it possible to use the SupportMapFragment class alongside ActionBarSherlock ? Thanks in advance EDIT I have downloaded and had a look at the library. The only changes to the extended Fragments I can see