views:

943

answers:

1

How can I programatically scroll a screen in a specific direction without changing focus. For eg. as we scroll down to a Feed in FaceBook app, it automatically scrolls the screen to fit all the text in the center of the screen.

Can this be done in Blackberry Java Development ?

Thanks. Afzal

+3  A: 

You should be able to do this if:

  1. use VERTICAL_SCROLL style in manager constructor (or HORIZONTAL_SCROLL)
  2. use setVerticalScroll(int) manager method (or setHorizontalScroll(int))
Max Gontar