Hide bottom bar - HTC One X

Hello, I m developing a software application which uses full screen. Everything goes well at all devices and ROMs (?), but in the HTC One X(4.0.3) i got a bottom bar presented in the picture. I m trying to hide it using the following code:
Code:
//hardcore
if ( Build.VERSION.SDK_INT >= 14 ) {
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
}
It works, but when the user taps on the screen this bar reappears. How can i hide it ultimately?

I think you have to target ICS with your app, or it will appear. I think there are some ICS guidelines that discuss the menu bar.
With the 4.0.4 update being rolled out, that bar can be removed in the settings menu (replaced by a long press).

Related

[Q] menu button question

so i'm currently using a t-mobile g2, but i'm definitely considering the galaxy nexus being my next phone. might even switch to verizon for it (but most likely will just wait for it on t-mobile).
my question is, and this really probably applies to all ICS phones, but for now, mainly to the galaxy nexus, is what happens with the menu button with all my current apps? i'm sure that many devs will be updating their apps to take advantage of and deal with any and all changes, but as it is, like 99% of my apps using the menu button, and since there is none now, i was curious how that works... i know from what i've read that alot of the main system apps (browser, camera, email/gmail, calendar, etc) have a menu button built into the layout... but what about 3rd party apps?
this is just something i was wondering about. i'm sure once i have one in my hand it will all make sense, but figured i'd ask
Dave
My best guess is it will show up in the bottom bar, similar to how it works in Honeycomb.
jayzeroeee said:
My best guess is it will show up in the bottom bar, similar to how it works in Honeycomb.
Click to expand...
Click to collapse
ok now i haven't messed with honeycomb at all, so does that mean the bar with the back/home/multitasking buttons is context sensitive and it could potentially change to include a menu button when needed with older apps?
thats what i was guessing...
polarbearmc said:
ok now i haven't messed with honeycomb at all, so does that mean the bar with the back/home/multitasking buttons is context sensitive and it could potentially change to include a menu button when needed with older apps?
thats what i was guessing...
Click to expand...
Click to collapse
Menu button will be there most of the time like in honeycomb
Sent from my GT-I9100 using xda premium
rdy2go said:
Menu button will be there most of the time like in honeycomb
Click to expand...
Click to collapse
i saw three or four hands-on and the bottom bar buttons have always been those three.
as far as i could understand, the menu is now raised by the "three dots" that appears contextually, often in the upper-right...
if i am right, it is at least a questionable choise i guess.
lorenx said:
i saw three or four hands-on and the bottom bar buttons have always been those three.
as far as i could understand, the menu is now raised by the "three dots" that appears contextually, often in the upper-right...
if i am right, it is at least a questionable choise i guess.
Click to expand...
Click to collapse
I think you are right.. menu is going to be included in the app itself.
androidbuff123 said:
I think you are right.. menu is going to be included in the app itself.
Click to expand...
Click to collapse
That only works for apps that are built for ICS. For apps that still rely on the hard menu button there will have to be some way to bring up the menu.
In honeycomb if there is a menu button present in the app there wont be a menu button on the bottom of the screen. If there is no menu button present in the app there will be one on the bottom of the app.
I'm sure it'll be just like that.
Sent from my Nexus S using xda premium
In ICS applications the menù button is "3 dots" in somewhere in the app.
In Gingerbread applications that runs in ICS, in the bar with back, home and multitasking buttons, will appear the "3 dots" button, that is like the "menù" button in GB.
esxuse me for my english.
source: hdblog.it
if the app doesn't support the menu button within the app, then you'll see a "three dots button" near the three soft button.
yea looks like a few of you have confirmed what i thought. the main "button" bar at the bottom is context sensitive and as needed a 4th, menu button will appear. but i'm sure most devs will start rebuilding their apps for ics in the future to not need it.
thanks!
actually starting to get really excited for this change.
I got a certain idea that since the buttons are from the screen, and therefore, rendered, modders will find a way to include more or less buttons, and even change their icon. I wouldn't be too surprised.
Quick screenshot from the second video of the mentioned HDblog showing the "three dots" menu button in apps that are not optimized for ics.
You can find it in the second video at around 7min 30 sec.
Here's also some good info regarding the soft-buttons and ICS from the SDK.
Controls for system UI visibility
Since the early days of Android, the system has managed a UI component known as the status bar, which resides at the top of handset devices to deliver information such as the carrier signal, time, notifications, and so on. Android 3.0 added the system bar for tablet devices, which resides at the bottom of the screen to provide system navigation controls (Home, Back, and so forth) and also an interface for elements traditionally provided by the status bar. In Android 4.0, the system provides a new type of system UI called the navigation bar. You might consider the navigation bar a re-tuned version of the system bar designed for handsets—it provides navigation controls for devices that don’t have hardware counterparts for navigating the system, but it leaves out the system bar's notification UI and setting controls. As such, a device that provides the navigation bar also has the status bar at the top.
To this day, you can hide the status bar on handsets using the FLAG_FULLSCREEN flag. In Android 4.0, the APIs that control the system bar’s visibility have been updated to better reflect the behavior of both the system bar and navigation bar:
The SYSTEM_UI_FLAG_LOW_PROFILE flag replaces the STATUS_BAR_HIDDEN flag. When set, this flag enables “low profile" mode for the system bar or navigation bar. Navigation buttons dim and other elements in the system bar also hide. Enabling this is useful for creating more immersive games without distraction for the system navigation buttons.
The SYSTEM_UI_FLAG_VISIBLE flag replaces the STATUS_BAR_VISIBLE flag to request the system bar or navigation bar be visible.
The SYSTEM_UI_FLAG_HIDE_NAVIGATION is a new flag that requests the navigation bar hide completely. Be aware that this works only for the navigation bar used by some handsets (it does not hide the system bar on tablets). The navigation bar returns to view as soon as the system receives user input. As such, this mode is useful primarily for video playback or other cases in which the whole screen is needed but user input is not required.
Click to expand...
Click to collapse

The Settings problem.

Dear friends,
for an unknown reason I cannot access my " Settings" whatever you call it from the below right hand corner of the screen as it used to be, it's no longer there. The only other option of getting the phone settings is from on top of the screen which I do not like. Thanks for your help.
Sent from my Galaxy Nexus using xda app-developers app
In ICS Android no longer has the menu button. Instead, apps now use the action bar. Any overflow from said bar now displays as 3 dots, which include actions such as settings.
Apps that haven't been updated to the new API's will display the 3 dots next to the multi-task button.
However, some custom roms allow you to persistently add the menu button to the navigation bar.
So, the short answer to your question would be to flash a custom rom.
Better get used to hitting the 3 dots, as Google is intent on phasing out the menu button
If you install a custom rom you can add the menu as a soft key
El Daddy said:
In ICS Android no longer has the menu button. Instead, apps now use the action bar. Any overflow from said bar now displays as 3 dots, which include actions such as settings.
Apps that haven't been updated to the new API's will display the 3 dots next to the multi-task button.
However, some custom roms allow you to persistently add the menu button to the navigation bar.
So, the short answer to your question would be to flash a custom rom.
Click to expand...
Click to collapse
Thanks but I have always had the Menu Bar since when I bought it and there is no software upgrade up till now.

[Q] Menu UI Overflow Toggle

Hi all developers!
I've recently enabled Navigation bar ( qemu.hw.mainkeys=0 ) in my note 2
However I found out the Dialer/Call log has an additional MENU BAR on top, blocking the view of some call logs thus quite ugly. I've tried changing DPI although the blocked call logs become "visible", the whole call log screen is somewhat ugly because of the stuff become smaller and not proportionate.
Also, I found out many other apps start showing "3 dot Menu" on the top right corner once I've enabled the Navigation bar. But I'm not interested in seeing all these, since I've my hardware Menu key working so I really don't need the additional MENU BAR or 3 dot menu.
Can anyone help me to get rid of 3 dot menu? I've been deep investigation on this from recompiling SystemUI.apk (which replaced the recent app soft button to menu button), but it's still not hiding the MENU BAR and 3 dot menu.
Recently I saw AOKP or AOSP ROM has this feature (Menu UI Overflow Toggle) I believe is what I'm looking for, can't be sure what it does until someone confirm this to me
The source code is here:
https://github.com/TeamSourcery/frameworks_base/commit/1477d1acc1303174aa1c23d28d64fb36d4268742
Anyone know how can I use the code above (where to modify and recompile my 4.1.2 rooted deodexed ROM) and remove the annoying 3 dot menu?
Many thanks your help is greatly appreciated!!!!!
truemagic said:
Hi all developers!
I've recently enabled Navigation bar ( qemu.hw.mainkeys=0 ) in my note 2
However I found out the Dialer/Call log has an additional MENU BAR on top, blocking the view of some call logs thus quite ugly. I've tried changing DPI although the blocked call logs become "visible", the whole call log screen is somewhat ugly because of the stuff become smaller and not proportionate.
Also, I found out many other apps start showing "3 dot Menu" on the top right corner once I've enabled the Navigation bar. But I'm not interested in seeing all these, since I've my hardware Menu key working so I really don't need the additional MENU BAR or 3 dot menu.
Can anyone help me to get rid of 3 dot menu? I've been deep investigation on this from recompiling SystemUI.apk (which replaced the recent app soft button to menu button), but it's still not hiding the MENU BAR and 3 dot menu.
Recently I saw AOKP or AOSP ROM has this feature (Menu UI Overflow Toggle) I believe is what I'm looking for, can't be sure what it does until someone confirm this to me
The source code is here:
https://github.com/TeamSourcery/frameworks_base/commit/1477d1acc1303174aa1c23d28d64fb36d4268742
Anyone know how can I use the code above (where to modify and recompile my 4.1.2 rooted deodexed ROM) and remove the annoying 3 dot menu?
Many thanks your help is greatly appreciated!!!!!
Click to expand...
Click to collapse
Wrong section bud, this should be in QA or Themes

[Root][App] GMD HideSoftKeys

I'm developing app that allows to hide soft keys without modifying the system and without reboot. In only hides soft keys and leaves notification bar intact. After hiding soft keys I replace them similar auto hiding bar with Back, Home, Recent Apps and Menu buttons.
It does NOT modify system files. If something unplanned happens, just reboot your device and it will restore your stock navigation bar.
Unique Features:
* Hide soft keys on any rooted device (Phone UI only).
* Auto hiding navigation bar replacement - swipe trigger upwards to show it.
Differences to other status bar hiding apps:
* Does not remove notification bar
* Does not modify system
* No need to reboot
* Stock Notification panel and settings panels are fully working
* Stock recent apps list is fully working
* No problems with receiving phone calls
Play Store: https://play.google.com/store/apps/details?id=com.gmd.hidesoftkeys
I'm collecting new ideas for future updates
It works on the GNEX. Lol I've been using it for a week or more.
CRIME INC. said:
It works on the GNEX. Lol I've been using it for a week or more.
Click to expand...
Click to collapse
Thanks, updated supported device list :fingers-crossed:. Do buttons look ok?
Hi there...
I just try your app and have few comments.
- Softkey could we biger, just like original. It is not necessarily to be smaller because - they can be hidden
- Vibrate on key press is missing thing for me
- After few turning on and off my phone reboot (Gnex, stock 4.2.2., I9250XXLJ1, JDW39)
I am not developer but I was always askin why someone don't make hiden navigation bar (buttons) and activate it just like we swipe our notification bar. Just like that and but very smooth. Al that PIE's and invisible areas was too laggy and don't enough responsive to me. You are very close to my idea and if this will work I think your app have potencial.
Good luck
Hello guys, i have my own implementation of this, I made it long time ago, but haven't released to public until today
Check it: http://forum.xda-developers.com/showthread.php?p=41195717
Grate app bro. Confirm that work on GSM GNexus with stock 4.2.2 rom.
Send from my awesome-superb-f.... ng incredible Galaxy Nexus
0.93:
- Added Google Now button when Home is hovered. Added animation.
- Added option to hide QuickNav bar when empty space on bar is pressed.
- Added option to keep/hide QuickNav bar when pressed anywhere else on scren.
- Added option to delay bar hide after pressing soft button. Pressing new button resets delay.
Donator here: Could it be possible to be able to disable the glow and maybe to add another section where you can be able to change the nav bar icons from a respository of sorts? Thanks! Keep up the good work!
kdmhong said:
Donator here: Could it be possible to be able to disable the glow and maybe to add another section where you can be able to change the nav bar icons from a respository of sorts? Thanks! Keep up the good work!
Click to expand...
Click to collapse
Try newest development version. I added theming funtionality.
hello, developer. Pro buyer here. Your app is very nice indeed and works great. I'm using it on my gnex with rooted stock rom. I just have the following observations:
1. It seems the app makes scrolling of the recent apps stuttery.
2. May I request for an option to use the stock 3-dot menu icon, instead of the 3-bar menu icon? The 3-dot icon blends better with the stock icons, in my opinion.
3. The menu icon randomly appears. (I have disabled it.)
Thanks!

Way to have normal Android navigation bar?

I just installed LOS 19.1 on my tablet. This is my first experience with LOS (and Android 12). On my home screent has the normal 3-button navigation bar at the bottom but moves it off to the right and adds toolbar launch buttons in the middle. Is there a way to bring back just the normal old Android navigation buttons without the added stuff?
EDIT: The navigation bar is being displayed over top of apps, so I can't access the bottom part of apps.
Took me forever to find this option....
Settings - > System - > Buttons - > Enable Taskbar (disable this)

Categories

Resources