0

How do I show the process bar in the middle of the Blackberry screen using Eclipse?

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
  • Can you please provide more information? What should the screen look like? Just the progress bar alone? Should it show on top of other things? – paullb Jun 21 '10 at 02:49
  • Please refer to this post http://stackoverflow.com/questions/1503313/blackberry-application-loading-screen – Michael Grassman Jun 21 '10 at 18:26

1 Answers1

0

Am using this:

HorizontalFieldManager hfm = new HorizontalFieldManager(USE_ALL_HEIGHT);
VerticalFieldManager vfm = new VerticalFieldManager(USE_ALL_WIDTH | FIELD_VCENTER);
ProgressBarField pbf = new ProgressBarField(0, 100, 50, USE_ALL_WIDTH);
vfm.add(pbf);
hfm.add(vfm);
add(hfm); 
Saif Hamed
  • 1,084
  • 1
  • 12
  • 17