Questions tagged [softkeys]
47 questions
1
vote
2 answers
WM_INITMENUPOPUP and POPUP resource
I'm writing an application for Windows Mobile 6 in C/C++. As usually, it has 2 soft keys, one of which is a menu. This menu has a popup menu in it. Here's (stripped) source of soft keys from resources.rc and few defines from resource.h:
#define…

binaryLV
- 9,002
- 2
- 40
- 42
1
vote
1 answer
how to hide menubar in qt(symbian)
Question 1:
I create menubar with below code
Qt::WindowFlags flags = windowFlags();
flags |= Qt::WindowSoftkeysVisibleHint;
setWindowFlags(flags);
showFullScreen();
I want hide the menubar, what shall do now?
Question 2:
When i switch my app to…

user199403
- 483
- 1
- 6
- 11
1
vote
0 answers
Did Termius for Android stop recognizing function keys?
We are testing several Lenovo Tab 4 Android (7.1.1) tablets as telnet clients over wireless LAN for part tracking (barcoding reading) in our manufacturing plant. Hopefully, these will soon replace very expensive Honeywell handheld computer/scanners…

BCanavan
- 19
- 3
1
vote
0 answers
How to customise Android's Navigation Bar (bottom soft keys)
There is a lot of questions/answers about application's navigation bar but I can't find anything specific to the bottom bar (maybe my wording isn't right?). I'm aware I need root for this (no issue here), I just can't find any information where to…

Miro Kropacek
- 2,742
- 4
- 26
- 41
1
vote
1 answer
Back press event of device to dismiss a window
I have created a window and i am showing it on screen through Broadcast receiver.But the problem is that it appears on the screen and i want to dismiss it once the back button is pressed.I am unable to get the event of button press on this view.My…

Vipin NU
- 301
- 2
- 16
1
vote
2 answers
How to capture the "softkey show/hide" event in Android?
In my case I hide softkeys in the app but at sometimes softkeys show and hide when displaying notifications. In my code I used,
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|…

Trilok
- 53
- 1
- 6
1
vote
1 answer
how to hide android softkeys
In my android app I hide soft keys bar using this:
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
|…

Trilok
- 53
- 1
- 6
1
vote
2 answers
Set soft navigation key background color for Nougat 7.1.1
I want to change background color for navigation soft keys that are introduced for Nougat. Is there any way I can implement that?
What I already implemented is added navigation bar color in both of my style files. But it's not fixing this and I…

Usman Ghauri
- 931
- 1
- 7
- 26
1
vote
2 answers
Android : Smoothly hide soft keys
I want to hide and show soft key (home, back, menu) like youtube, when video is in full screen mode.
I am using below code.
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
…

Faisal Ahsan
- 928
- 1
- 12
- 22
1
vote
2 answers
How to target devices with and without soft navigation keys (ie: Nexus 5, Galaxy S4)?
I was looking everywhere for an answer with no success. I am using the values-xxhdpi folder to set my app's layout dimensions for the nexus 5, but as I switch to the galaxy S4 emulator (same resolution but without soft navigation keys) the layout is…

Edmond Tamas
- 3,148
- 9
- 44
- 89
1
vote
0 answers
Hide softkeys on my android app
In my app I want to remove completly the softkeys (back, home, etc).
I've managed to do that with:
getWindow ( ).getDecorView ( ).setSystemUiVisibility ( View.SYSTEM_UI_FLAG_HIDE_NAVIGATION );
But when I touch the screen it comes back, and does not…

Julio Silva
- 23
- 5
1
vote
1 answer
Navigation Bar app requirement for Play Store
I have an Android app that requires the Navigation Bar to work. How can I hide this app on the Play Store for users that have a device with hardware navigation keys?

Rudey
- 4,717
- 4
- 42
- 84
1
vote
1 answer
Force menu button in softkeys
I developed small sms app. Unfortunately it is not Holo themed. I know that it's 2013 and it should be, but let's just leave it. Recently Google changed API for SMS. I've implemented all needed things and I was forced to change API to 19 (KitKat).…

Jakub Dyszkiewicz
- 524
- 1
- 5
- 17
1
vote
1 answer
Android: How to show ics task switcher or detect if user clicks that softkey?
I'd want to simulate task switcher softkey of our ICS Android devices and detect when user clicks that softkey.
Is there a way?

Meroelyth
- 5,310
- 9
- 42
- 52
1
vote
1 answer
Android Back/Menu Key issue
I want to prevent default function of back and menu key and bring up an exit menu at the bottom.. My problem is, when I have a text input function in my app everytime a key is pressed in general brings up the exit menu i created at the bottom and…

johnscott1989
- 33
- 5