Android Open Source - AndroidUIExample Close Action






From Project

Back to project page AndroidUIExample.

License

The source code is released under:

Apache License

If you think the Android project AndroidUIExample 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 action;
//from w  w w .  ja  v a  2 s  . c o  m
public class CloseAction extends Action {

  public CloseAction() {
    final float start = 0.239375f;
    final float end = 1f - start;

    lineData = new float[]{
        // line 1
        start, start, end, end,
        // line 2
        start, end, end, start,
        // line 3
        start, start, end, end,};
  }
}




Java Source Code List

action.Action.java
action.BackAction.java
action.CloseAction.java
action.DrawerAction.java
action.LineSegment.java
action.PlusAction.java
action.SymbolAction.java
com.example.androidui.ActionView.java
com.example.androidui.MyActivity.java
com.example.androidui.RevealColorView.java
util.BakedBezierInterpolator.java
util.UiHelper.java