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
36
votes
5 answers

Moving status bar in iOS 7

The problem I'm facing is this: I want to implement an iOS 7 app with nice design and left/right menu, which appears after the main view animate itself to the right/left. I'm doing this with [UIView animateWithDuration...] code, but that's not…
Gyfis
  • 1,174
  • 1
  • 14
  • 35
36
votes
3 answers

How to close the status bar/notification panel after notification button click

I've browsed through Stackoverflow and have seen that this question has been asked, but I didn't find any solution. I have a custom notification with 2 buttons. I want the status bar panel to close after I press a button on that notification, but…
Toni Kanoni
  • 2,265
  • 4
  • 23
  • 29
35
votes
7 answers

Using windowTranslucentStatus with CollapsingToolbarLayout

I'm trying to get a similar effect to what is seen on google play. I've got the below layout to show a transparent toolbar with an image behind it. When the user scrolls there is a parallax effect on the imageview as it scrolls off the screen. The…
34
votes
5 answers

IOS 4.3 hide status bar permanently

I'm trying to hide the status bar in iOS 4.3 now that setStatusBarHidden:animated: is deprecated: [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; //deprecated The only option that exists in the plist file is: Status bar is…
user346443
  • 4,672
  • 15
  • 57
  • 80
34
votes
10 answers

Xamarin.Forms - Change StatusBar Color

I search but I can't find if it's possible to change the StatusBar color for each platform, from my portable code? (for Android, iOS & WinPhone 8.1) public App() { // Change the StatusBar color MainPage = new MainPageUser(); }
Emixam23
  • 3,854
  • 8
  • 50
  • 107
33
votes
9 answers

Hide the status bar on iPhone on a single view?

I want to show the status bar in my app in all views but one. I have tried modifying the 'status bar is initially hidden' in the plist, i have tried: [[UIApplication sharedApplication] setStatusBarHidden:YES]; That hides the bar but leaves an…
Adam Waite
  • 19,175
  • 22
  • 126
  • 148
33
votes
9 answers

prefersStatusBarHidden not called

I have a UITabViewController -> UINavigationController -> UIViewController and want to hide and unhide the statusBar. when I call setNeedsStatusBarAppearanceUpdate() the method prefersStatusBarHidden is not called. func fadeOutStatusBar…
Md1079
  • 1,360
  • 1
  • 10
  • 28
33
votes
7 answers

Hide the status bar in ios 9

How do you hide the status bar in ios 9? This is now deprecated: [UIApplication sharedApplication] setStatusBarHidden:YES];
cdub
  • 24,555
  • 57
  • 174
  • 303
33
votes
4 answers

How do I customize the WPF StatusBar layout?

Adding more than one child to a WPF StatusBar results in poor layout with little option to customize. For example, this code:
Kent Boogaart
  • 175,602
  • 35
  • 392
  • 393
33
votes
7 answers

Proper way to hide status bar on iOS, with animation and resizing root view

Consider a view controller that needs to slide out (or hide) the status bar when a button is clicked. - (void) buttonClick:(id)sender { [[UIApplication sharedApplication] setStatusBarHidden:YES …
hpique
  • 119,096
  • 131
  • 338
  • 476
32
votes
4 answers

showing a status message in R

I'd like to write a function that presents to the user a status message that shows something like the time, the percent complete, and the current status of a process. I can handle assembling the message, but I'd like to do something other than just…
JD Long
  • 59,675
  • 58
  • 202
  • 294
32
votes
4 answers

In Call Status Bar (Unable to Satisfy Constraints)

Just like this question: Auto Layout and in-call status bar and this question: Resize for in-call status bar?, I am having issues with the In Call Status Bar screwing up my view layout. Here is my nested structure. I have a Custom Modal…
Will Hua
  • 1,729
  • 2
  • 23
  • 33
32
votes
6 answers

How to display text in the browser status bar?

How can we change the text displayed in the browser status bar using JavaScript (or jQuery)?
omg
  • 136,412
  • 142
  • 288
  • 348
31
votes
3 answers

apple-mobile-web-app-status-bar-style in ios 10

I know this question has been asked previously, just want to know if this is still the case in ios 10 (and ios 9)... According to the apple developer guidelines for web apps (found here), there are 3 choices for the status bar in a web app; default,…
Brad
  • 1,019
  • 1
  • 9
  • 22
31
votes
13 answers

How to hide status bar in UIImagepickercontroller?

I am new to iOS development. I am trying to hide status bar in UIImagePickerController. Whenever I click on "Take photo", status bar appears. It doesn't hide. I want status bar to be hidden only in UIImagePickerController. Here is my code, -…