#Android Compatibility Lib + Google Maps Hack
A port of the Android Compatibility package which makes FragmentActivity extend MapActivity. This is a hack to make it possible to use a MapView in a Fragment.
-
fixed bug in FragmentManager, using patch from ActionBarSherlok details
-
added MapFragment (inspired by Pete Doyle sample, with some improvements)
-
providing also "build-splitted.xml": it allows to compile distinct jars, "core" and "maps":
"core" is original compatibility library with petedoyle,9re and my modification needed in order to have eventually maps support;
"maps" includes classes for maps support: FragmentMapActivity, MapFragment, and so on.This split can be useful if you want have a compliant maps support library but you don't want add maps support to your project, because you don't still need it (but in a future version, you should do)
Not as Doyle version, where FragmentActivity inherits from MapActivity, here we have FragmentMapActivity inheriting from MapActivity.
More interesting details here:
http://uwvm.blogspot.it/
For pre-compiled .jar files, visit the Downloads page.
You can build the jar using Ant:
git clone git://github.com/petedoyle/android-support-v4-googlemaps.git
cd android-support-v4-googlemaps
ant
The default Ant target will build the jar and place it in the build/jar
folder.
Alternatively, the source also includes an Eclipse project which you can use to add it as a build dependency for your project. Import it into Eclipse using File > Import > Existing Projects into Workspace...
, then configure the build path of your project to require the android-support-v4-googlemaps
project.
New release based on r7 of the Android Compatibility Library.
Released android-support-v4-r6-googlemaps.jar
and android-support-v13-r6-googlemaps.jar
based on revision 6 of the Android Compatibility Library. This also includes a fix for Android bug #22226.
This also includes the additions from Google's r5 release. For the changelog of what changed in ACL r5 and r6, see http://developer.android.com/sdk/compatibility-library.html.
Released android-support-v4-r4-googlemaps.jar
and android-support-v13-r4-googlemaps.jar
based on revision 4 of the Android Compatibility Library. This release, like the official release from Google, splits the ACL into two jars (v4 and v13). The v13 jar contains all the v4 classes plus the classes in the android.support.v13
package.
For the changelog of what changed in ACL r4, see http://developer.android.com/sdk/compatibility-library.html.
Released android-support-v4-r3-googlemaps.jar
based on revision 3 of the Android Compatibility Library (see downloads). FragmentPagerAdapter
and FragmentStatePagerAdapter
are also included from the new android.support.v13
package.
Released android-support-v4-r2-googlemaps.jar
based on revision 2 of the Android Compatibility Library (see downloads).
Currently, one downside is that ALL classes extending FragmentActivity
are MapActivity
s. Its possible to make a separate class (i.e. FragmentMapActivity), but it requires some refactoring of the FragmentActivity code.
Feel free to file a bug to request it or fork this project to fix it.
Need help? Check out this project's Google Group.