how to keep the list of contacts scrollable and textfield to enter the name to be searched on the same form where the textfield should be visible like we have in phonebook where the list is scrollable and the search textfield is fixed at the end of screen.
I was using the LWUIT
cform.addComponent(list);
cform.addComponent(textfield);
It is showing the textfield only when the list has items which can appear on a single screen that is not scrollable. I want textfield to be fixed at the end of the screen.
If you know the other framework which would be easy then please give me the link.