This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form f = new Form("Accordion", new BoxLayout(BoxLayout.Y_AXIS)); | |
f.setScrollableY(true); | |
Accordion accr = new Accordion(); | |
accr.addContent("Item1", new SpanLabel("The quick brown fox jumps over the lazy dog\n" | |
+ "The quick brown fox jumps over the lazy dog")); | |
accr.addContent("Item2", new SpanLabel("The quick brown fox jumps over the lazy dog\n" | |
+ "The quick brown fox jumps over the lazy dog\n " | |
+ "The quick brown fox jumps over the lazy dog\n " | |
+ "The quick brown fox jumps over the lazy dog\n " | |
+ "")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form hi = new Form("Circle Progress"); | |
hi.setLayout(new BoxLayout(BoxLayout.Y_AXIS)); | |
final CircleProgress p = new CircleProgress(); | |
p.setProgress(100); | |
p.setClockwise(true); | |
p.setStartAngle(CircleProgress.START_9_OCLOCK); | |
hi.add(p); | |
final ArcProgress p2 = new ArcProgress(); | |
p2.setProgress(70); |