Questions tagged [statusbar]

A status bar is an area typically found at the bottom of Graphical User Interfaces that provide information about the computer, the application or other applications.

2434 questions
1
vote
1 answer

Hide status bar temporarly in iOS 7

I want to hide the status bar temporarily in my app. I want it always shown but some times I want to hide it. I tried this : - (BOOL)prefersStatusBarHidden { return YES; } But I'm unable to change the state of my status bar once this method is…
olivierplante
  • 185
  • 2
  • 11
1
vote
0 answers

statusbar issue with splash screen and navigation screen

I have an issue with statusbar and it's like when i start my app and splash screen appears with some delay so splash screen stays upto few seconds at that time i've hide the statusbar but at the end of that delay i've make my view controller visible…
D-eptdeveloper
  • 2,430
  • 1
  • 16
  • 30
1
vote
5 answers

Status Bar still appearing in iOS 7 despite correct PList settings

I've just upgraded to XCode 5 and iOS 7. I've read all the suggestions I can find, but still getting the status bar appearing over the top of my apps. I've tried setting View controller-based status bar appearance to NO in my plist: I've tried…
Smikey
  • 8,106
  • 3
  • 46
  • 74
1
vote
0 answers

Statut bar reappears when User click on uploading file option in an UIWebview on IOS7

I hide de statut bar in My IOS app. Since IOS7, when a user is in a UIWebView and click on a field with upload features (images for exemple), the statut bar appears alone. How can I correct this bug ?
Anthony
  • 2,801
  • 3
  • 30
  • 49
1
vote
1 answer

Presented view controller covers status bar in iOS 7

I have a presented view controller in iOS 7 that doesn't have a navigation bar, but the status bar is visible. I tried setting the edgesForExtendedLayout to UIRectEdgeNone, but that doesn't seem to do anything (unless I show a navigation bar, which…
shim
  • 9,289
  • 12
  • 69
  • 108
1
vote
2 answers

How to change the status bar color when opening MFSideMenu

When I open the MFSideMenu the status bar doesnt change color to black and the text color to white in iOS7. I have set UIViewControllerBasedStatusBarAppearance to YES and NO and both dont change the status bar color.
Encore PTL
  • 8,084
  • 10
  • 43
  • 78
1
vote
3 answers

how to show a number upon an icon on android statusbar

I want to show an icon on status bar when receive some messages. The icon represent the number of unread message, so I want to draw some text, such as 2 on the icon. I tried two solutions but both failed. set number field (in notification class) …
Tony
  • 57
  • 1
  • 5
1
vote
1 answer

Sometimes Play icon on status bar disappear while using AVQueueplayer

I want to show the play icon on status bar in iOS while app is playing audio. I use AVQueuePlayer to play audio items. All works well but problem I am facing is play icon doesn't show on status bar sometimes. The app has to support play/pause. When…
user2273744
  • 73
  • 1
  • 10
1
vote
3 answers

iPhone Status Bar for custom message ala Evernote, In-Call, etc

I am trying to find how to implement a custom message on the status bar, something like the Evernote "Downloading changes..." message seen here. Is this a private API call? Any suggestions or pointers?
legobuff
  • 23
  • 6
1
vote
1 answer

How create a permanent notification with battery level?

Is possible create a permanent notification of battery level starting from this code?: public void onCreate(Bundle savedInstanceState) { ... this.registerReceiver(this.myBatteryReceiver , new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); …
David_D
  • 1,404
  • 4
  • 31
  • 65
1
vote
0 answers

Change the status bar and navigation bar color?

I wanted to know if there's a way to change the status bar background color as well as the icons on Android phones. Will changing the background and button color of the navigation bar also works?(e.g. in Nexus devices or others with software buttons…
borislemke
  • 8,446
  • 5
  • 41
  • 54
1
vote
1 answer

c# statusstrip toolstripstatuslabel updates after the process is over

I have a method in which the program cycles through a load of data and I want it to put in the toolstripstatuslabel1 the text loading, but for some reason it does this after it is done loading as opposed to while it is loading. My…
jister
  • 135
  • 3
  • 13
1
vote
1 answer

wxPython: StatusBar does NOT update with long help from wxToolBar

I am creating a ToolBar within a wx.Frame init and setting the help string as follows: def __init_(self,...): ... self.CreateStatusBar() tb = self.CreateToolBar(wx.TB_HORIZONTAL|wx.NO_BORDER|wx.TB_FLAT) tb.SetToolBitmapSize((32,32)) …
Adam Fraser
  • 6,255
  • 10
  • 42
  • 54
1
vote
1 answer

How to show Progress-bar in Status bar when the SQL Query retrieve data from SQL Server?

I have a VB.NET Application. In the same have some query, which result will display in a DataGridView. It need 2 to 3 min to execute my query. Now I want to show a Progressbar on Status bar that will display the Data Retrieve progress . After…
Daniel Smith
  • 1,626
  • 3
  • 29
  • 59
1
vote
1 answer

Enable/disable GPS and toggle the icon in the status bar - android

I am trying to enable/disable the GPS in my android code : final Intent broadcast = new Intent(); broadcast.setClassName("com.android.settings",…
einav
  • 599
  • 3
  • 8
  • 15