Hi Erel,
It's does show and with default color.
How can I set the bar color to red? I did set using Activity.TitleColor = Colors.Red but not working.
Due to the requirements I need to set it to red color.
Thank you.
Sub SetStatusBarColor(clr As Int)
Dim p As Phone
If p.SdkVersion >= 21 Then
Dim jo As JavaObject
jo.InitializeContext
Dim window As JavaObject = jo.RunMethodJO("getWindow", Null)
window.RunMethod("addFlags", Array (0x80000000))
window.RunMethod("clearFlags", Array (0x04000000))
window.RunMethod("setStatusBarColor", Array(clr))
End If
End Sub