Android Open Source - ESDDLiveWallpaper Config






From Project

Back to project page ESDDLiveWallpaper.

License

The source code is released under:

Apache License

If you think the Android project ESDDLiveWallpaper 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

/*
 * Copyright 2011 Fred,Fan Fangqing <fangqing.fan@hotmail.com>
 * /*  w w w. j  ava  2  s .com*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
*/

package com.fanfq.livewallpaper.esdd;

public class Config {

  public static int MODEL = 0;
  public static int BLOCK_STYLE = 0;
  public static int MOTION = 0;
  public static boolean isEffect = false;
  
  public static final int MODEL_CLASSIC = 0;
  public static final int MODEL_LOOP = 1;
  public static final int BLOCK_STYLE_20PX = 20;
  public static final int BLOCK_STYLE_30PX = 30;
  public static final int BLOCK_STYLE_40PX = 40;
  public static final int BLOCK_STYLE_60PX = 60;

  public static final int MOTION_TOP = 0;
  public static final int MOTION_BOTTOM = 1;
  public static final int MOTION_LEFT = 2;
  public static final int MOTION_RIGHT = 3;
  
  public static final int BLOCK_COLOR_YELLOR = 3;
  
  public static int screenWidth = 0;
  public static int screenHight = 0;
  
}




Java Source Code List

com.fanfq.livewallpaper.esdd.BlockSprite.java
com.fanfq.livewallpaper.esdd.Block.java
com.fanfq.livewallpaper.esdd.Config.java
com.fanfq.livewallpaper.esdd.ESDDAnimal.java
com.fanfq.livewallpaper.esdd.ESDDThread.java
com.fanfq.livewallpaper.esdd.ESDD.java
com.fanfq.livewallpaper.esdd.LiveWallpaperSettings.java
com.fanfq.livewallpaper.esdd.LiveWallpaper.java
com.fanfq.livewallpaper.esdd.Renderable.java