Android Open Source - PocketLantern P L Constants






From Project

Back to project page PocketLantern.

License

The source code is released under:

GNU General Public License

If you think the Android project PocketLantern 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 cc.co.techzealous.pl.utils;
//ww w .j av  a 2 s .  com
public class PLConstants extends Object {

  private PLConstants() {
    super();
  }
  
  /** boolean preference indicating if the eula was accepted */
  public static final String PREF_EULA = "eula";
  /** int preference indicating the x position */
  public static final String PREF_POSX = "x";
  /** int preference indicating the y position */
  public static final String PREF_POSY = "y";
  /** int preference indicating the size of the light */
  public static final String PREF_SIZE = "size";
  public static final int DEFAULT_SIZE = 250;
  
  public static final String PREF_COLOR_GREEN = "-16711936";
  
  public static final String MY_STORE_PAGE = "market://search?q=pub:Emil Todorov";
}




Java Source Code List

cc.co.techzealous.pl.MainActivity.java
cc.co.techzealous.pl.PLEulaActivity.java
cc.co.techzealous.pl.PLPreferenceActivity.java
cc.co.techzealous.pl.PLSizeActivity.java
cc.co.techzealous.pl.utils.MyView.java
cc.co.techzealous.pl.utils.PLConstants.java