Back to project page MapsMuzei.
The source code is released under:
Apache License
If you think the Android project MapsMuzei listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.bonysoft.mapsmuzei; // w w w .j a v a 2s.c om public class Constants { // Preferences keys public static final String PREF_MAP_TYPE = "map_type"; public static final String PREF_ZOOM = "zoom_level"; public static final String PREF_INVERTED = "light_inverted"; public static final String PREF_UPDATE_INTERVAL = "update_interval"; public static final String PREF_WIFI_ONLY = "wifi_only"; // Default values public static final boolean PREF_INVERTED_DEFAULT = true; public static final int PREF_MAP_TYPE_DEFAULT = MapTheme.MODE_MAP; public static final int PREF_ZOOM_DEFAULT = 15; public static final int PREF_UPDATE_INTERVAL_DEFAULT = 1; public static final boolean PREF_WIFI_ONLY_DEFAULT = false; }