Back to project page simpleplayer.
The source code is released under:
GNU General Public License
If you think the Android project simpleplayer 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 org.sergez.splayer.util; /*from w w w.ja va2 s .co m*/ /** * @author Sergii Zhuk * Date: 28.07.13 * Time: 16:19 */ public final class PrefsConstants { //prefs constants, should be synchronized with preferences.xml : public static final String PREF_CHECKBOX_SHOW_EXTENSION = "checkboxShowExtension"; public static final String PREF_CHECKBOX_BIG_FONT = "checkboxBigFont"; public static final String PREF_CHECKBOX_RED_ELAPSED = "checkboxRedElapsedTime"; public static final String PREF_CHECKBOX_READ_INTERNAL_MEMORY = "checkboxInternalMemory"; public static final String PREF_CHECKBOX_PLAY_ONLY_WHEN_BUTTON_PRESSED = "checkboxPlayOnlyOnButtonPressed"; public static final String PREF_CHECKBOX_STOP_AFTER_EACH_FILE = "checkboxStopAfterEachFile"; /* Needed for donations flow control: */ public static final String PREF_LAST_DONATION_SHOW = "lastDonationShow"; public static final String PREF_STOP_SHOW_DONATION = "stopShowDonation"; private PrefsConstants() { } }