> Could we with the 1.5 sdk change the position of the zoomcontrol in a > mapView as The setBuidInZoomControls (different of getControl()method > is not a child of a view?
The Android 1.1-era getZoomControls() method is still available in Android 1.5, though it is deprecated. Instead of calling setBuiltInZoomControls(), you call getZoomControls() and add them to the container of your choice, positioned somewhere on-screen. That being said, because getZoomControls() is deprecated, and setBuiltInZoomControls() is now standard, and since setBuiltInZoomControls() puts the zoom controls centered on the bottom, users will start expecting the zoom controls to be centered on the bottom. Hence, if you elect to do something differently, be sure to let your users know. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

