Languages

Menu
Sites
Language
How can I customize status bar like color and hide?

I am making some application having header(Navigation bar) and I could not find how I can change status bar's color same with my header's background color. 

Responses

2 Replies
André Reus

hi~

Status Bar is a part of Platform /System UI. As far i know you can't change the color of that from your app. 

Whar you can do 

* You can choose your app header color by matching with the phone theme. Tizen phone have 2/3 theme as far i know. you can change it from Setting>Styler

* You can hide the Status Bar from your app. To hide it, follow below code. 

simple change the viewmodes from config.xml of your app.

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns:tizen="http://tizen.org/ns/widgets" xmlns="http://www.w3.org/ns/widgets" id="http://yourdomain/FFSET" version="1.0.0" viewmodes="fullscreen">
    -------------------------
---------------------------------
    <tizen:profile name="mobile"/>
</widget>

Hope it will help you. 

-Thanks

Jeff Kang

Thank you for the helpful response. @Andre.

I hope they give the apis about it.