I would like to put a progress bar in the notification bar. The idea is showing the progress bar while the program uploads a file to a server. Everything else is ok, but I can not figure out how to refresh the progress bar inside the notification. Does anybody knows any pattern to play with? I mean, where I should refresh the progress bar, in a service or activity and so.
Refresh progress bar in notification bar
27.7k Views Asked by ahmontero At
3
There are 3 best solutions below
0

To remove a ProgressBar from RemoteView use the following code :-
remoteViews.setViewVisibility(R.id.progressBar, View.INVISIBLE);
You can also use View.GONE
but that will make android to fill empty space.
1

You can use custom views in Notification:
https://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView
I don't know what your code looks like, so I don't know what you need to modify, butI did some searching through the documentation. I found some stuff on Notifications, ProgressBars, and RemoteViews.
Specifically, in RemoveView, you can update the Progress bar. So combining some of the example code in each link, I get something like this: