Back to project page ESDDLiveWallpaper.
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.
/* * 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; }