Reputation: 336
I have a toolbar which has a notification icon with a count badge. My problem is if i implement a new toolbar in all activities the badge count is not synchronized. How can i solve this ? Any links or tutorials appreciated.
Upvotes: 0
Views: 778
Reputation: 128
If all your Activities are a subclass of a "BaseActivity
"which cointains the toolbar and code to update the badge that should do the trick.
Also you should store the current value on the badge in SharedPreferences
and update it to the badge on the BaseActivity
onResume()
for example.
Upvotes: 1