Questions tagged [android-softkeyboard]

The default onscreen input method provided by Android OS.

Android Soft Keyboard is the onscreen keyboard provided by Android OS.

Key Events of Android soft keyboard

On-screen Input Methods in Android Developers blog

2751 questions
1
vote
0 answers

New Android keyboard behaving unexpectedly in certain apps

I am a linguist, not a programmer, sorry. I was asked and am adapting a keyboard for a minority language in Africa. I have spent a lot of time on this and am willing to learn more and to dig deeper. I am using the latest Android Studio in Windows 10…
1
vote
1 answer

Android Scroll Webview Editrable to cursor - soft keyboard

I have a piece of inherited code that I can not for the life of me figure out how to go about debugging this issue. I have a Linear Layout with a webview in it. Inside the webview is a div that is set to: style="overflow-y: scroll;…
justdan0227
  • 1,374
  • 18
  • 48
1
vote
0 answers

android things 0.5.1-devpreview soft keyboard

Android Things 0.5.1-devpreview installed on NXP Pico i.MX7D. Cannot get the software keyboard to show. adb -s shell ime list -a nothing shows imx7d_pico:/ $ ime list -a | grep mId nothing shows ime enable…
1
vote
0 answers

Android Constraint Layout onMeasure not seeing soft Keyboard

Ok so I'm trying to create an Event hook to notify me when the soft Keyboard is shown or hidden. I've sub-classed the Constraint Layout as follows: public class MyConstraintLayout extends ConstraintLayout { //public static final String…
1
vote
0 answers

Check Android soft keyboard visibility

I work on editing code of UnityNativeEdit that is about text field by native keyboard in Unity3D which is handled by native android plugin. I want that soft keyboard doesn't cover text field. So by searching find the solution by placing this piece…
1
vote
0 answers

Android : Retain Focus on current edit text on Screen lock / unlock

I've a screen with few edit texts.While entering data on one of those fields, I simply press lock screen button When I unlock the phone, keyboard remains open and focus is lost. I know onPause()/ onResume() lifecycle methods will be called. But I…
1
vote
2 answers

how to control listview to reload.

I face a problem in list view. In my list view have edit text and text view. When i scroll the list my data that is entered in text view has lost the value and show the default value. i have two button in list view i increase the quantity and scroll…
1
vote
1 answer

adjustPan and adjustResize in nested fragment

I use a ViewPager and inside the first fragment of the ViewPager I have a another fragment that is parenting a sub fragment with ScrollView in it. to make it more visual: ┌------------┐ | 1 | 1 is the ViewPager fragment | ┌---------┐| | | 2…
Poorya
  • 1,291
  • 6
  • 27
  • 57
1
vote
2 answers

Android soft keyboard pushes toolbar & recyclerview up

See following images attached. When I'm clicking on the edittext, my whole layout is pushing to the top. The result should be that the toolbar & recyclerview should be fixed to the top. Image 1 Image 2 My layout is as shown below:
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

GridLayout doesn't reset after size adjustment from hiding keyboard

My Android fragment is using the support GridLayout to display equally-spaced views (first image). In my manifest I'm changing how the soft keyboard displays so it resizes the GridLayout when I tap on the EditText and the keyboard is displayed…
tronman
  • 9,862
  • 10
  • 46
  • 61
1
vote
0 answers

Window soft input modes not working with WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS

I've a customised status bar with gradient effect. I've achieved it using this solution. The main factor was WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS flag. Have a look on the code... public class ForgotPasswordActivity extends…
User
  • 4,023
  • 4
  • 37
  • 63
1
vote
1 answer

Bottom sheet dialog fragment is not scrolling up when keyboard appears

I have a BottomSheetDialogFragment which is opened from another fragment. bottom_sheet_fragment.xml: I have two fragments for the view pager each of which contains an EditText and a…
1
vote
1 answer

Android: add DONE key to soft keyboard deprecated attribute

I am trying to add a DONE key to the soft keyboard so that it will hide when the user is done adding text to an EditText. The thing is that, from other answers here, I saw that adding the following to the XML file will do the thing: …
codeKiller
  • 5,493
  • 17
  • 60
  • 115
1
vote
0 answers

How to push RecyclerView up and let Toolbar be visible

I make some kind of chat application, the layout contains Toolbar, RecyclerView and panel for sending messages (as on the pictures). I try to implement the following behavior: when the keyboard opens the panel with EditText AND RecyclerView are…