0

I have a progress bar displayed at the status bar, when the status bar is expanded the progressbar flickers. Till Ics the same code was working fine. Now in Jelly bean I see this issue. Any suggestions appreciated.

dilaraates
  • 135
  • 1
  • 1
  • 16
user1059747
  • 33
  • 1
  • 7

1 Answers1

-2

I think you have to set some flags like

ProgressBar pb = new ProgressBar();
pb.setCancelable(false);

only when you click on that expandable pb than cancel it

Sathyajith Bhat
  • 21,321
  • 22
  • 95
  • 134
G M Ramesh
  • 3,420
  • 9
  • 37
  • 53
  • `ProgressBar` has no method called `setCancelable` if you meant `ProgressDialog` this answer is not good since `ProgressDialog` has nothing to do with Status/Notification – Selvin Aug 10 '12 at 10:23