Android Open Source - android-ui Plus Action






From Project

Back to project page android-ui.

License

The source code is released under:

Apache License

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

package at.markushi.ui.action;
/*from  ww w.ja  va2  s . c  o m*/
public class PlusAction extends Action {

  public PlusAction() {

    final float bottom = 76f / 96f;
    final float top = 1f - bottom;
    final float left = 20f / 96f;
    final float right = 1f - left;
    final float center = 0.5f;

    lineData = new float[]{
        // line 1
        center, top, center, bottom,
        // line 2
        left, center, right, center,
        // line 3
        center, top, center, bottom,};
  }
}




Java Source Code List

at.markushi.ui.ActionView.java
at.markushi.ui.RevealColorView.java
at.markushi.ui.action.Action.java
at.markushi.ui.action.BackAction.java
at.markushi.ui.action.CloseAction.java
at.markushi.ui.action.DrawerAction.java
at.markushi.ui.action.LineSegment.java
at.markushi.ui.action.PlusAction.java
at.markushi.ui.util.BakedBezierInterpolator.java
at.markushi.ui.util.UiHelper.java