Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk 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 in.srain.cube.util; // www . j a v a 2s . co m /** * Created by srain on 11/3/14. */ public class Debug { public static boolean DEBUG_CACHE = false; public static boolean DEBUG_IMAGE = false; public static String DEBUG_IMAGE_LOG_TAG = "cube_image"; public static String DEBUG_IMAGE_LOG_TAG_TASK = "cube_image_task"; public static String DEBUG_IMAGE_LOG_TAG_PROVIDER = "cube_image_provider"; public static boolean DEBUG_SCROLL_HEADER_FRAME = false; public static boolean DEBUG_PAGE_INDICATOR = false; public static boolean DEBUG_LIST = false; public static boolean DEBUG_PTR_FRAME = false; // print lifecycle information by log tag "cube-lifecycle" public static boolean DEBUG_LIFE_CYCLE = true; }