In this part of the LWUIT resource editor tutorial I review the basics of Lists in LWUIT, lists are one of the more complex components in LWUIT and the part that's exposed in the GUI builder has quite unique features.
For more details please visit the lwuit blog at http://lwuit.blogspot.com/
@jibike You can click the "List Model" button in the events tab or just override setListModel in the state machine to write whatever model you want.
vprise 10 months ago
Hi vprise, what if I wanted to put in dynamically generated values for the List? e.g ComboBox wyearBox=new ComboBox(); for(int i=1989;i<2010;i++) { wyearBox.addItem(""+(i+1)); }
This I could do normally, but I to create such a scenario with the GUI Builder? Thanks for your patience :)
jibike 10 months ago