Ok...
I have searched the Q&A section and everywhere i could think of.
Perhaps i am blind or just plain stupid... But how do i change the color on the statusbar in android?
I want it to be dark.
1 Answer
Accepted Answer
Don't have an answer, but maybe a clue on where to head.
You can remove the title bar by messing with the theme.xml in platform/android/res/values
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="Theme.Titanium" parent="android:Theme.NoTitleBar.Fullscreen"> <item name="android:windowBackground">@drawable/background</item> </style> </resources>It might be possible then to modify the theme, or customize it. Android native theme support in Titanium is, to this point, wanting.
Your Answer
Think you can help? Login to answer this question!