Dear all,
Maybe it is possible to add this cool feature for our device?
http://forum.xda-developers.com/showthread.php?t=1265397
There's already an app called 'honeybar' that allows you to remove and add the status bar.
SoHaunted said:
There's already an app called 'honeybar' that allows you to remove and add the status bar.
Click to expand...
Click to collapse
Thank you a lot!
Related
hi...is ter a way to add an app in staus bar...like i want to add some app say a browser or another app to status bar as a shortcut.............
u can directly add it on your home screen..
Sent from my GT-S6102 using xda premium
npx123 said:
hi...is ter a way to add an app in staus bar...like i want to add some app say a browser or another app to status bar as a shortcut.............
Click to expand...
Click to collapse
try 1Tap Quick Bar in the Play Store. however, I uninstalled because I noticed my battery started draining much faster than usual. i'm not sure it was caused by this app though; so if you decide to try it, kindly post your results. thanks! :laugh:
you can also try Notification Toggle.
hope that helps!
tas the software similar to notification toggle ap...but i want to add it like 14 toggles
U mean this ? http://forum.xda-developers.com/showthread.php?t=1952943
d3cka said:
U mean this ? http://forum.xda-developers.com/showthread.php?t=1952943
Click to expand...
Click to collapse
w3el thnks fr tat...was looking for that too... but u no im looking for a tutorial in which i can add my desired app in my status bar...
I am also interested in that... this might help you... http://forum.xda-developers.com/showthread.php?t=1817865
hi,
how to prevent the hiding of the status bar in games etc ?? (fullscreen..)
I'm not lookingfor an app which can make it to reappear
thanks !
aLeda said:
hi,
how to prevent the hiding of the status bar in games etc ?? (fullscreen..)
I'm not lookingfor an app which can make it to reappear
thanks !
Click to expand...
Click to collapse
People are you usually trying to give the game/app onscreen more importance. ParanoidAndroid and CyanogenMod both hide the navigation bar too now. You are definitely going in the opposite direction. I have never heard of an app that would make it reappear, why you would you want it too?
hhairplane said:
People are you usually trying to give the game/app onscreen more importance. ParanoidAndroid and CyanogenMod both hide the navigation bar too now. You are definitely going in the opposite direction. I have never heard of an app that would make it reappear, why you would you want it too?
Click to expand...
Click to collapse
ah ... :/
it(s nice to don't miss notifications, get infos fasters like the time etc...
aLeda said:
ah ... :/
it(s nice to don't miss notifications, get infos fasters like the time etc...
Click to expand...
Click to collapse
i know what u mean, for specific apps that doesn't need to go full screen it would be nice to show status bar
someone should make an app that allow you to manually enables/disables status bar in specific apps would be great
joshtrader said:
i know what u mean, for specific apps that doesn't need to go full screen it would be nice to show status bar
someone should make an app that allow you to manually enables/disables status bar in specific apps would be great
Click to expand...
Click to collapse
yes this would be great, or an app that simply prevent hiding stat bar
(sorry for my english)
aLeda said:
yes this would be great, or an app that simply prevent hiding stat bar
(sorry for my english)
Click to expand...
Click to collapse
ParanoidAndroid may have that option, since they have the option to force full screen.
joshtrader said:
i know what u mean, for specific apps that doesn't need to go full screen it would be nice to show status bar
someone should make an app that allow you to manually enables/disables status bar in specific apps would be great
Click to expand...
Click to collapse
In synergies codefire SR15 it is impemented.
If you drop town the upper side of the screen twice in fullscreen, you are able to access into the statusbar.
I really love it, because im always able to use fullscreen and have access to the statusbar.
Sent from my Nexus 4 using Tapatalk 2
I need to make an app that hides my notification bar and shows it when i need it.
How can i make the app with AIDE or eclipse?!
I know how to make an app but i dont know how to make a usefull background app.
I would need help how it is done.
Any help is appreciated.
Tried googling about apps that show ui etc. etc.
2hrs no answers. Im really bad with googling.
Fatsodonkey said:
I need to make an app that hides my notification bar and shows it when i need it.
How can i make the app with AIDE or eclipse?!
I know how to make an app but i dont know how to make a usefull background app.
I would need help how it is done.
Any help is appreciated.
Tried googling about apps that show ui etc. etc.
2hrs no answers. Im really bad with googling.
Click to expand...
Click to collapse
Well, I think that this is simply not possible.
You can hide the notification bar in your app but you cannot do this while other apps are in the foreground. You would need to use a custom ROM for that.
However, what would probably be possible is creating an overlay which is shown on top of the notification bar. Nevertheless apps will not be fullscreen, just your overlay will be displayed instead of the notification bar. (If you want to do this, have a look at the RoundR sources on github.) I do not think that this is what you want.
Modifiying the system UI from an app is not possible!
(And it is good that it is not. What would you say if an app removes your notification bar without your agreement? )
nikwen said:
Well, I think that this is simply not possible.
You can hide the notification bar in your app but you cannot do this while other apps are in the foreground. You would need to use a custom ROM for that.
However, what would probably be possible is creating an overlay which is shown on top of the notification bar. Nevertheless apps will not be fullscreen, just your overlay will be displayed instead of the notification bar. (If you want to do this, have a look at the RoundR sources on github.) I do not think that this is what you want.
Modifiying the system UI from an app is not possible!
(And it is good that it is not. What would you say if an app removes your notification bar without your agreement? )
Click to expand...
Click to collapse
I understand what you are saying.
But how is Smart Statusbar done?!
http://www.xda-developers.com/android/smart-statusbar-gives-you-easy-statusbar-access-in-full-screen-apps/
Im trying to create a similar but more simplistic.
Fatsodonkey said:
I understand what you are saying.
But how is Smart Statusbar done?!
http://www.xda-developers.com/android/smart-statusbar-gives-you-easy-statusbar-access-in-full-screen-apps/
Im trying to create a similar but more simplistic.
Click to expand...
Click to collapse
Looks like the dev is really clever. :good:
I have got an idea how he could have done it:
Create an overlay on the screen (look at some souce at github: https://github.com/MohammadAdib/RoundR , https://github.com/sukso96100/SidePanel)
If it is clicked, launch a transparent activity with this attribute in Android manifest: android:theme="@android:style/Theme.NoTitleBar"
After some time or after a click on the screen close it.
(No need for the status bar permission. It seems to be a one created by himselft.)
I think that this should work.
nikwen said:
Looks like the dev is really clever. :good:
I have got an idea how he could have done it:
Create an overlay on the screen (look at some souce at github: https://github.com/MohammadAdib/RoundR , https://github.com/sukso96100/SidePanel)
If it is clicked, launch a transparent activity with this attribute in Android manifest: android:theme="@android:style/Theme.NoTitleBar"
After some time or after a click on the screen close it.
(No need for the status bar permission. It seems to be a one created by himselft.)
I think that this should work.
Click to expand...
Click to collapse
Thank´s!
I´ll try this!
Fatsodonkey said:
Thank´s!
I´ll try this!
Click to expand...
Click to collapse
You're welcome.
Good luck! :good:
There is fullscreen mode, gallery and some other apps use it
GR0S said:
There is fullscreen mode, gallery and some other apps use it
Click to expand...
Click to collapse
Yes, but you cannot tell the system how other apps should be shown.
How can I put the toggles in the status bar in AOSP?
Someone more experienced there could help me with some status bar for her or could add these shortcuts to nóis laity.
I'm dying to use it, most do not like to be without toggles shortcuts.
evajrt said:
How can I put the toggles in the status bar in AOSP?
Someone more experienced there could help me with some status bar for her or could add these shortcuts to nóis laity.
I'm dying to use it, most do not like to be without toggles shortcuts.
Click to expand...
Click to collapse
Go to Cyanogenmod settings>interface>notification power widget>widget buttons>*here
ei
aniket.lamba said:
Go to Cyanogenmod settings>interface>notification power widget>widget buttons>*here
Click to expand...
Click to collapse
But that is in CM7.
I want to do is in AOSP, I've tried several times and nothing.: Rolleyes:
Hey guys, I want to hide my status bar in all applications. It should only be visible if I swift from top to the bottom of the screen. Right now I hided my status bar with nova launcher but this hides the status bar only when looking on your homescreen. If I open youtube, whatsapp or any other app the status bar is visible again and will not hide. Is there any possibility to hide the status bar completely?
ndroid1562 said:
Hey guys, I want to hide my status bar in all applications. It should only be visible if I swift from top to the bottom of the screen. Right now I hided my status bar with nova launcher but this hides the status bar only when looking on your homescreen. If I open youtube, whatsapp or any other app the status bar is visible again and will not hide. Is there any possibility to hide the status bar completely?
Click to expand...
Click to collapse
Hi!
Yes its possible!
If your have Xposed framwork, download "Force immersive mode" module.
This module hide status bar and nav bar automatically in app of your choice or in all your apps!
Therand said:
Hi!
Yes its possible!
If your have Xposed framwork, download "Force immersive mode" module.
This module hide status bar and nav bar automatically in app of your choice or in all your apps!
Click to expand...
Click to collapse
Hey, does that app work with keyboard?
Memovic said:
Hey, does that app work with keyboard?
Click to expand...
Click to collapse
It worked with keyboard but it is very laggy. Also I would prefer that the navigation bar is not hided. I uninstalled the module for this reasons. You can try it too maybe you like it.. wouldn't it be so laggy on my phone I would use it maybe
Memovic said:
Hey, does that app work with keyboard?
Click to expand...
Click to collapse
Euuu.. the 3 dots menu?
I have no probleme to use the keyboard with this module on any apps.