Can the Google Maps Android apps be extended? If so, how? -


i'd add functionality google maps android app without creating entire new map of own. can extend via extension or plugin?

as merka wrote can't extend googlemap , googlemapoptions classes, can create custom class-wrapper, that:

class myowngooglemap implements onmapreadycallback {     private googlemap mgooglemap;      @override     public void onmapready(googlemap googlemap) {         mgooglemap = googlemap;         ...     }      public void myownmethod() {        ...     }  } 

you can google more details wrappers in java or start this answer of arne


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -