0

I want to show the user a progress dialog until a particular task is complete.

For example, after the user enters username and password it takes some time to connect as the username and password are validated. I want to show the progress bar to the user while waiting.

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
user469999
  • 2,101
  • 4
  • 24
  • 30

2 Answers2

2

GaugeField percentGauge = new GaugeField("Percent: ", 1, 100, 29, GaugeField.PERCENT);

rupesh
  • 420
  • 2
  • 19
0

While user is waiting for response u can also show loader screen or an activity indicator.

check these:

http://supportforums.blackberry.com/t5/Java-Development/How-to-display-the-blackberry-loading-icon-manually/m-p/552833

Blackberry - Application loading screen

Blackberry - Loading/Wait screen with animation

May be it can help u.

Community
  • 1
  • 1
Swati
  • 2,870
  • 7
  • 45
  • 87