Last active
January 28, 2016 04:41
-
-
Save marchbold/33c9a737b036d22fa03b to your computer and use it in GitHub Desktop.
Set the colour of the status bar on Android API v21+ using the Application ANE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Application.init( APPLICATION_KEY ); | |
if (Application.isSupported) | |
{ | |
Application.service.setStatusBarColour( 0xFF0000 ); | |
} | |
// com.distriqt.Application |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment