Android Open Source - GoogleMapsV2Demo Ui Settings Demo Activity






From Project

Back to project page GoogleMapsV2Demo.

License

The source code is released under:

Apache License

If you think the Android project GoogleMapsV2Demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2012 The Android Open Source Project
 */*from w  w w .  j  av  a2 s .  com*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.example.mapdemo;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.UiSettings;


import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;

/**
 * This shows how UI settings can be toggled.
 */
public class UiSettingsDemoActivity extends FragmentActivity {
    private GoogleMap mMap;
    private UiSettings mUiSettings;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.ui_settings_demo);
        setUpMapIfNeeded();
    }

    @Override
    protected void onResume() {
        super.onResume();
        setUpMapIfNeeded();

        if (mMap != null) {
            // Keep the UI Settings state in sync with the checkboxes.
            mUiSettings.setZoomControlsEnabled(isChecked(R.id.zoom_buttons_toggle));
            mUiSettings.setCompassEnabled(isChecked(R.id.compass_toggle));
            mUiSettings.setMyLocationButtonEnabled(isChecked(R.id.mylocationbutton_toggle));
            mMap.setMyLocationEnabled(isChecked(R.id.mylocationlayer_toggle));
            mUiSettings.setScrollGesturesEnabled(isChecked(R.id.scroll_toggle));
            mUiSettings.setZoomGesturesEnabled(isChecked(R.id.zoom_gestures_toggle));
            mUiSettings.setTiltGesturesEnabled(isChecked(R.id.tilt_toggle));
            mUiSettings.setRotateGesturesEnabled(isChecked(R.id.rotate_toggle));
        }
    }

    /**
     * Returns whether the checkbox with the given id is checked.
     */
    private boolean isChecked(int id) {
      return ((CheckBox) findViewById(id)).isChecked();
    }

    private void setUpMapIfNeeded() {
        // Do a null check to confirm that we have not already instantiated the map.
        if (mMap == null) {
            // Try to obtain the map from the SupportMapFragment.
            mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                    .getMap();
            // Check if we were successful in obtaining the map.
            if (mMap != null) {
                setUpMap();
            }
        }
    }

    private void setUpMap() {
        mMap.setMyLocationEnabled(true);
        mUiSettings = mMap.getUiSettings();
    }

    /**
     * Checks if the map is ready (which depends on whether the Google Play services APK is
     * available. This should be called prior to calling any methods on GoogleMap.
     */
    private boolean checkReady() {
        if (mMap == null) {
            Toast.makeText(this, R.string.map_not_ready, Toast.LENGTH_SHORT).show();
            return false;
        }
        return true;
    }

    public void setZoomButtonsEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables the zoom controls (+/- buttons in the bottom right of the map).
        mUiSettings.setZoomControlsEnabled(((CheckBox) v).isChecked());
    }

    public void setCompassEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables the compass (icon in the top left that indicates the orientation of the
        // map).
        mUiSettings.setCompassEnabled(((CheckBox) v).isChecked());
    }

    public void setMyLocationButtonEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables the my location button (this DOES NOT enable/disable the my location
        // dot/chevron on the map). The my location button will never appear if the my location
        // layer is not enabled.
        mUiSettings.setMyLocationButtonEnabled(((CheckBox) v).isChecked());
    }

    public void setMyLocationLayerEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables the my location layer (i.e., the dot/chevron on the map). If enabled, it
        // will also cause the my location button to show (if it is enabled); if disabled, the my
        // location button will never show.
        mMap.setMyLocationEnabled(((CheckBox) v).isChecked());
    }

    public void setScrollGesturesEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables scroll gestures (i.e. panning the map).
        mUiSettings.setScrollGesturesEnabled(((CheckBox) v).isChecked());
    }

    public void setZoomGesturesEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables zoom gestures (i.e., double tap, pinch & stretch).
        mUiSettings.setZoomGesturesEnabled(((CheckBox) v).isChecked());
    }

    public void setTiltGesturesEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables tilt gestures.
        mUiSettings.setTiltGesturesEnabled(((CheckBox) v).isChecked());
    }

    public void setRotateGesturesEnabled(View v) {
        if (!checkReady()) {
            return;
        }
        // Enables/disables rotate gestures.
        mUiSettings.setRotateGesturesEnabled(((CheckBox) v).isChecked());
    }
}




Java Source Code List

com.example.mapdemo.BasicMapActivity.java
com.example.mapdemo.CameraDemoActivity.java
com.example.mapdemo.CircleDemoActivity.java
com.example.mapdemo.EventsDemoActivity.java
com.example.mapdemo.GroundOverlayDemoActivity.java
com.example.mapdemo.LayersDemoActivity.java
com.example.mapdemo.LegalInfoActivity.java
com.example.mapdemo.LocationSourceDemoActivity.java
com.example.mapdemo.MainActivity.java
com.example.mapdemo.MarkerDemoActivity.java
com.example.mapdemo.MultiMapDemoActivity.java
com.example.mapdemo.MyLocationDemoActivity.java
com.example.mapdemo.OptionsDemoActivity.java
com.example.mapdemo.PolygonDemoActivity.java
com.example.mapdemo.PolylineDemoActivity.java
com.example.mapdemo.ProgrammaticDemoActivity.java
com.example.mapdemo.RawMapViewDemoActivity.java
com.example.mapdemo.RetainMapActivity.java
com.example.mapdemo.SaveStateDemoActivity.java
com.example.mapdemo.TileOverlayDemoActivity.java
com.example.mapdemo.UiSettingsDemoActivity.java
com.example.mapdemo.view.FeatureView.java