Posts by Bruno Muniz • 81 points
4 posts
-
1
votes1
answer52
viewsA: In totalcross, how to show a popup when I click a button inside a accordion?
It would be good for you to send us your code to understand where you went wrong when you used onEvent. Already with addPenListener, you must have confused with addPressListener. Follow the code of…
-
0
votes1
answer32
viewsA: How do I create a simple multiline accordion with Java and Totalcross?
This is because you are putting the text as caption (.caption), try with the code below. public class AccordionSample extends MainWindow{ public AccordionSample(){ setUIStyle(Settings.MATERIAL_UI);…
-
1
votes2
answers173
viewsA: How do I Generate MD5 Hash
tries to run this example class: public class DigestTest extends MainWindow { private Edit edtInput; private ComboBox cboDigests; private Button btnGo; private ListBox lboResults; private Object[]…
totalcrossanswered Bruno Muniz 81 -
3
votes2
answers396
viewsA: consume REST service with totalcross
Alessandro, In Totalcross’s github there is an example of how to use the API for REST calls. https://github.com/TotalCross/tcrest Try running the example and see if it meets what you need =) Another…