Back to project page AndroidUIExample.
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.
package action; /*w ww . j ava 2 s .com*/ public class BackAction extends Action { public BackAction() { final float endX = 0.82f; final float startX = 0.21875f; final float center = 0.5f; lineData = new float[]{ // line 1 startX, center, 0.52f, 0.2f, // line 2 startX, center, endX, center, // line 3 startX, center, 0.52f, 0.8f,}; lineSegments.add(new LineSegment(0, 8)); lineSegments.add(new LineSegment(4)); } }