Questions tagged [android-softbuttons]

Questions related to soft buttons / soft bottom navigation buttons on android phones and tablets.

7 questions
11
votes
9 answers

How to Hide System Navigation Bar in Tablets?

At my Tablet, it has following bar to control back, home etc. (I don't know the correct name, status bar? control bar? Action bar? or other) In program, it use following method to have a full screen.…
John
  • 323
  • 2
  • 4
  • 13
5
votes
2 answers

Android - How to unhide soft buttons after programatically hiding them?

Some android phones have soft buttons (back, home, menu). I manage to hide them using setSystemUiVisibility as described here. However, how to make the softbuttons visible pragmatically?
Mayank Kumar Chaudhari
  • 16,027
  • 10
  • 55
  • 122
1
vote
0 answers

Cannot catch back-button. "The input has been finished in ImeInputStage."

I have an AppCompatActivity where I programmatically toggle the softinput. There is only one scenario where my keyboard open/close boolean is not set properly because I cannot intercept the back-button event. This event closes the keyboard when…
1
vote
1 answer

Can an activity handle onBackPressed() before onCreate() is finished?

The title is self explanatory: I would like to know if a new activity can handle the onBackPressed() before the onCreate() is finished. In other words, at which point in the lifecycle is the handling of the soft back button touch transferred to a…
1
vote
0 answers

i am facing the issue in android 9 , android bottom softkey buttons hide the textview and button

When I press the back button from bottom softkey then buttom button is displayed, but when the app is initially loaded, then the button is hidden below the softkey. The app is working fine in all the versions except android 9 pie, in softkey bottom…
1
vote
0 answers

Android Samsung Galaxy s10 soft key buttons bar is hiding our application bottom view

I am using my own navigation bar at the bottom of the screen. Its working properly in all devices but in Samsung Galaxy s10, this bottom navigation bar is getting hidden. I guess this is because of soft key buttons bar. From here Bottom soft…
Prabhu M
  • 3,534
  • 8
  • 48
  • 87
0
votes
1 answer

How to fix soft buttons height for Galaxy S10+?

I was having such a problem. I solved this with the following code block. public static void fixSoftButtonsHeightProblem(Context context, View view) { int softButtonsHeight = Utils.getSoftButtonsBarHeight(context); …
Hasan Kucuk
  • 2,433
  • 6
  • 19
  • 41