'Different Colors of Status Bar in each Activity [duplicate]
Is it possible to have different color of status bar in each Activity like in Activity A is blue, Activity B is red, and Activity C is green?
Solution 1:[1]
You can put this code in your Activities onCreate() method to change the status bar color of the activity:
getWindow().setStatusBarColor(<your color>);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ocasin |
