Back to project page CirclesLiveWallpaper_Android.
The source code is released under:
GNU General Public License
If you think the Android project CirclesLiveWallpaper_Android 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.blogspot.techzealous.circleslivewallpaper.utils; // w ww. j ava 2 s .co m public class CirclesConstants extends Object { /* This class is not to be instantiated */ private CirclesConstants() { super(); } /** int preference indicating how fast should the circles be redrawn */ public static final String PREF_SPEED = "speed"; /** int preference indicating how many circles to draw on the screen */ public static final String PREF_CIRCLE_COUNT = "count"; /** int preference holding the value for the red color */ public static final String PREF_CIRCLES_RED = "red"; /** int preference holding the value for the green color */ public static final String PREF_CIRCLES_GREEN = "green"; /** int preference holding the value for the blue color */ public static final String PREF_CIRCLES_BLUE = "blue"; /** boolean preference indicating if the eula was accepted */ public static final String PREF_EULA = "eula"; }