Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to change the predefined style of the zoom controls in my application to appear like the new zoom controls in the google maps application. See below:

enter image description here

How can I do it? I have been looking around and I haven't found anything.

Thanks in advance.

share|improve this question
What do you want to do exactly can you give more detail? – DuyguK Jan 18 '12 at 15:50
I would like to know if there is any easy way to change the look of the zoom buttons or I have to create new drawables and add them to the project, override the listeners and so on... but I guess I have to create my own zoom buttons – jalv1039 Jan 18 '12 at 16:04
@jalv1039: u will get such buttons easily if u search on google , – android_hungry Jan 18 '12 at 18:32

2 Answers

up vote 4 down vote accepted

You should have four image drawables namely:

  1. Zoom in (+) enable/disable
  2. Zoom out (-) enable/disable

Put them in MapView layout an ImageView or Button with background image as the above drawables.

Then you should assign onClickListeners like:

zoomIn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        mapView.getController.zoomIn()
        checkzoom();
    }
});

zoomOut.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        mapView.getController.zoomOut()
        checkzoom();
    }
});

public void checkzoom() {
    if(mapView.getZoomLevel()==1) // dont know if 0 or 1, just wrote it
    {
        zoomOut.setEnabled(false);
        // or u can change drawable and disable click
    }
    if(mapView.getZoomLevel()==18) {
        zoomIn.setEnabled(false);
        // or u can change drawable and disable click
    }
}

EDIT: zoom in zoom out

share|improve this answer

I solved the problem this way: disable built in zoom controls (setBuiltInZoomControls(false)), add your own buttons to UI and add handlers for click on button events.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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