Mridul S Kumar
Mridul S Kumar

Reputation: 336

Android Toolbar in all activities

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

Answers (1)

Victor Gomes
Victor Gomes

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

Related Questions