Back to project page Kite.
The source code is released under:
Apache License
If you think the Android project Kite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from w w w . j a v a 2 s .co m */ package com.efurture.kite.param; /** * Kite Supported Variables * @author gubaojian email: gubaojian@163.com * */ public class Params { /** * device screen's width, variable screen_width * */ public static final String SCREEN_WIDTH = "screen_width"; /** * device screen's height, variable screen_height * */ public static final String SCREEN_HEIGHT = "screen_height"; /** * pixel per dp, variable density * */ public static final String DENSITY= "density"; /** * view's width, variable width * */ public static final String WIDTH = "width"; /** * view's height, variable height * */ public static final String HEIGHT = "height"; /** * view's parent width, variable parent_width * */ public static final String PARENT_WIDTH = "parent_width"; /** * view's parent height, variable parent_height * */ public static final String PARENT_HEIGHT = "parent_height"; }