Unity3D Android - Overlap Status Bar - android

I am developing an app for Android and iOS in Unity3D.
The app on iOS looks like this picture from the web (The status bar is transculent and overlaps the actual app): http://www.appcoda.com/wp-content/uploads/2013/10/Dark-Navigation-Bar-Light-Status-Bar.jpg (I can't post images yet)
But when I run the app on Android, the status bar is drawn outside the app boundries. This means that the app gets stretched and it does not look satisfying: http://oi60.tinypic.com/2i1nvb8.jpg
Is it possible to make the Android status bar overlap the Unity3D app on Android? And if so, is it then possible to make it translucent as on iOS or at least a darker matching color (as introduced in Android 5.0.0)?
Best Regards,
Andreas B. Ostergaard.

Try this, it lets you decide when to display the menu and navigation bars. Also lets you color them.
http://zehfernando.com/2015/unity-tidbits-changing-the-visibility-of-androids-navigation-and-status-bars-and-implementing-immersive-mode/

Related

bottom bar with multi colored icons

not sure this is possible, checked around but not found anything.
In IOS this is possible , below the facebook bottombarview as seen in iphone
what about android?

I want make an apk can set status bar color for all other app

I want make an apk can set status bar color for all other app. Mean I don't want other app change the status bar color. Ex: in gmail, status bar will have red color, but I want just black. Is it possible?
To be honest, what you are asking is difficult. I've only seen it done for rooted phones so you can probably go that route. Or you could look at an app such as Substratum which manages the skins of the android and it's apps, for ideas.
Start researching how to do this and ask for assistance on StackOverflow.

How to configure Status Bar color when application is loading with Cordova?

I created an application with Cordova. I want to improve the UI/UX so it looks like a native application, as much as possible.
When the application loads for the 1st time, the first milliseconds (less than 1 second actually) the Status Bar (and Background) has not the color I configured with the Cordova Plugin for Status Bar, as you can see there.
This blue is something linked to my Android Version/Installation, all menus and settings have the same mandatory color. The Android Version I have currently is 7.0
After the first milliseconds, the Status Bar and the Background become the ones I actually configured.
Also, when I open the menu of recent applications, we find this same color. I'd like to set that color. Is this possible?

How do i design/code the color of status bar in eclipse as my android app just like in ios7?

I want to design the Android App that will change the status bar of Android device as App opens like in iOS 7.
Can we make status bar changeable in Android?
Basically, no, the status bar in itself cannot be changed in Android by an application.
I guess that to be able to do that you'd need to make a custom ROM or maybe dive into the AOSP and find a way to do that on rooted phones.

True fullscreen in AIR on Android?

I am developing an interactive video application using AIR on Android. The application is for at-risk communities to encourage them to get common cancer screenings, and will be deployed in clinics. I am testing and eventually deploying on the ASUS TF300, a 1280x800 ICS tablet.
When I put the app in fullscreen mode through a variety of methods it looks great, except the bottom bar of buttons does not hide, and instead displays as a black bar with "stealth" dots where the buttons normally present. I need to completely hide this bar so that users will not inadvertently navigate to home or other Android views.
I am having trouble solving this problem because I am not sure - Is it possible to EVER hide this bottom bar in ICS? If so, is there a known method for achieving this in AIR?
Many thanks for any advice.
related - what is the official name for this bottom bar of buttons in ICS?
I had the same issue, where I had to hide the system bar in a digital signage app for Android sticks for TV. I used distriqt native extension called Application.
Then it was as simple as using UI_NAVIGATION_HIDE in ApplicationDisplayModes class along with FULLSCREEN in my init function.
Just so you know, it is a paid extension, but worth buying the package as you get a lot of other good stuff along with it. I wasn't sure on where to begin with building my own ANE, so I went with distinqt.
Yes, it should be possible. After a few days of beating my head against the wall, I have this working on a cheap, Chinese android stick running ICS. The gist is that you need to create an Adobe Native Extension that runs the follow lines of Java:
Window window = context.getActivity().getWindow();
window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
Of course, you need about a dozen files of boilerplate to run those lines. Here's a good tutorial on building native extensions.
The name is system bar.
http://developer.android.com/design/get-started/ui-overview.html
Unless you are using a rooted device you can't really removed them as they are user navigation controls.
See this SO question:
Is there a way to hide the system/navigation bar in Android ICS

Categories

Resources