Android Open Source - CirclesLiveWallpaper_Android Circles Constants






From Project

Back to project page CirclesLiveWallpaper_Android.

License

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.

Java Source Code

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";
}




Java Source Code List

com.blogspot.techzealous.circleslivewallpaper.CirclesBackColorActivity.java
com.blogspot.techzealous.circleslivewallpaper.CirclesCountActivity.java
com.blogspot.techzealous.circleslivewallpaper.CirclesEula.java
com.blogspot.techzealous.circleslivewallpaper.CirclesPreferenceActivity.java
com.blogspot.techzealous.circleslivewallpaper.CirclesService.java
com.blogspot.techzealous.circleslivewallpaper.CirclesSpeedActivity.java
com.blogspot.techzealous.circleslivewallpaper.utils.CirclesConstants.java
com.blogspot.techzealous.circleslivewallpaper.utils.MyCircle.java