up vote 0 down vote favorite
1
share [g+] share [fb]

I'm trying to determine how to set the ViewConfiguration.zoomControlsTimeout setting in the Android 1.5 framework, when working with a MapView. There is information on how to get this data, but how can I set it?

My end goal is to ensure zoom controls are always displayed on the screen, instead of the default hide/show behavior.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If you look at the source code to getZoomControlsTimeout() in ViewConfiguration (e.g., use Google Code Search), you will see that it is a hardwired constant.

I suspect that you will need to implement your own zoom controls to achieve the look you seek.

link|improve this answer
Thanks, somehow I hadn't discovered Google Code Search in my Android work yet! – MikeG Jul 28 '09 at 11:38
Yeah, Google Code Search is a lifesaver for finding stuff in Android. Just put package:android in your search query, and it will restrict your search to Android-related projects (Android itself plus projects in Google Code and github that seem Android-y). – CommonsWare Jul 28 '09 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.