Back to project page spotdroid.
The source code is released under:
MIT License
If you think the Android project spotdroid 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 com.spotdroid.mobile.android.gui; //from w ww . ja va2s. co m /** * Defines constants for preferences keys. Corresponds with settingx.xml. */ public interface PreferenceData { public static final String PREF_USERNAME = "username"; public static final String PREF_PASSWORD = "password"; public static final String PREF_URL = "url"; public static final String PREF_FORMAT = "format"; public static final String PREF_TIME = "time"; public static final String PREF_DISTANCE = "distance"; public static final String PREF_INTERVALL = "intervall"; public static final String PREF_MAX = "max"; public static final String PREF_MODUS = "modus"; public static final String PREF_LOG = "log"; }