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.
Asked
Active
Viewed 374 times
0
-
Any suggestions on the solution? – user1059747 Aug 10 '12 at 17:47
1 Answers
-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