Android Open Source - Kite Params






From Project

Back to project page Kite.

License

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.

Java Source Code

/**
 * //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";
}




Java Source Code List

com.efurture.kite.Kite.java
com.efurture.kite.OnFinishLayoutListener.java
com.efurture.kite.example.KiteItemActivity.java
com.efurture.kite.example.MainActivity.java
com.efurture.kite.expression.EvaluatorException.java
com.efurture.kite.expression.EvaluatorManager.java
com.efurture.kite.expression.Evaluator.java
com.efurture.kite.expression.Exp4jEvaluator.java
com.efurture.kite.expression.MVEL2Evaluator.java
com.efurture.kite.layout.LayoutExtension.java
com.efurture.kite.param.ParamMap.java
com.efurture.kite.param.Params.java