1

I am not able to scroll through the application screen using trackball. I am using Blackberry Pearl 8100 simulator. Please help.

Thanks in advance.

Maksym Gontar
  • 22,765
  • 10
  • 78
  • 114
iOSDev
  • 3,617
  • 10
  • 51
  • 91

1 Answers1

3

Does it work on other simulators and just not the 8100? How about a real handset?

For your screen class you can try using the style attribute to specifically tell it to have vertical scrolling,

super(MainScreen.VERTICAL_SCROLL | MainScreen.VERTICAL_SCROLLBAR);

similarly you should make sure that it's not set to

super(MainScreen.NO_VERTICAL_SCROLL)
Fermin
  • 34,961
  • 21
  • 83
  • 129
  • I also recommend looking into various field managers like VerticalFieldManager or HorizontalFieldManager which can result in elegant handling of layout once you're screen becomes more complex. – AtariPete May 11 '09 at 13:40