1

The issue that I face in my bblwuit app is this:

I have a textfield, when clicking on it the virtual keyboard opens, which is fine. However, the text field is hidden behind the keyboard. How do I make the screen scroll automatically so that the textfield is visible above the virtual keyboard?

Thanks

Scott W
  • 9,742
  • 2
  • 38
  • 53
varun
  • 11
  • 1

1 Answers1

0

Use code like this

VerticalFieldManager vfm=new VerticalFieldManager(VERTICAL_SCROLL);
BasicEditField bef=new BasicEditField();
vfm.add(bef);
add(vfm);
Vivek Kumar Srivastava
  • 2,158
  • 1
  • 16
  • 23
  • the way in which you have told is for native bb can you tell me a way in which whn the vkb opens the cursor in the focus text field automatically scrolls up for LWUIT BB – varun Sep 21 '11 at 05:43