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; //from w w w. jav a 2s . c o m public class SymbolAction extends Action { public SymbolAction() { final float startX = 0.21875f; final float center = 0.5f; lineData = new float[]{ // line 1 (1f-startX), center, (1f-0.52f), 0.2f, // line 2 .2f, .5f, .9f, .8f, // line 2 (1f-startX), center, (1f-0.52f), 0.8f,}; //make the elbow look cleaner lineSegments.add(new LineSegment(0, 8)); lineSegments.add(new LineSegment(4)); } }