Somehow the app "Navbar Apps" allows to customize the background of the nav bar, even if it's not in the foreground, and even not just a simple color.
I thought it's only possible to change the color of it, and only when the app is in the foreground...
I've seen it on some custom roms, even having special effects when music plays, but I didn't know it's possible to customize it even without a custom rom (or root).
Is it a hack? How do they change, not just the color of the navigation bar, but even set a background image for it (including dynamic one, for battery status) ?
Is it also possible to change other system bars, like the notification bar?
How does it check which app is in the foreground (needed for deciding when to change the color, based on current app, probably)? Is it a new API ? I thought that the API for getting the foreground activity got deprecated and now doesn't help in any way...
Tap on the settings cog next to the static color icon — this brings up a color wheel to choose your desired shade. Select black for your saturation and zero opacity, then tap on Select This color . You should notice your nav bar turn black at this point.
The basic setup is quite easy. Making it into an app will take some work.
You'll need to use the Accessibility APIs, along with WindowManager#addView(...)
.
Is it a hack?
I can't say I like the idea, but its not exactly a hack.
How do they change, not just the color of the navigation bar, but even set a background image for it (including dynamic one, for battery status) ?
Since we're adding a View
(or ViewGroup
), we have a lot more control.
Is it also possible to change other system bars, like the notification bar?
I'll look into this.
How does it check which app is in the foreground (needed for deciding when to change the color, based on current app, probably)?
You can use Accessibility APIs to listen for Window
level changes (AccessibilityEvent
) - this will give you the packageName. Use it as you like.
I'll provide you with some pointers:
Manifest:
SYSTEM_ALERT_WINDOW
<service />
Accessibilityservice
onServiceConnected()
TYPE_SYSTEM_OVERLAY
with WindowManager#addView(...)
onAccessibilityEvent(AccessibilityEvent)
; packageName will be available hereOutcome
An example project is hosted here: Link.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With