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
3 answers

Layout not pushed up when Soft keyboard appears

I have a fragment of this given layout hierarchy, Inside the view pager I have a Edit text. When keyboard appears to type in the text to EditText the entire layout is not pushed up. Instead the contents inside ViewPager is pushed up. I want the…
Zach
  • 9,989
  • 19
  • 70
  • 107
1
vote
0 answers

Android keyboard immediately disappears when typing into FabricJS IText

On Chrome or Opera on Android if I try and type into an IText (by tapping on it to activate editing mode and the cursor as normal) which I've added on my canvas, the system keyboard appears as expected but after about half a second disappears again,…
Alex Kerr
  • 956
  • 15
  • 44
1
vote
1 answer

Force open alphabetical keyboard

I have a tab which when clicked on will force open the keyboard. This works fine, but there is also a numerical input field on this app, so when I use this and go back to the tab which opens up the keyboard it opens up a numerical keyboard (number…
1
vote
3 answers

Android show only some characters in keyboard

i have the following problem to resolve in an Android App. I have an editText which has to show only numbers and the the letters 'x' and 'c' when the keyboard is prompted. Is this possible? Thanks for the help!
pabloim1
  • 70
  • 1
  • 7
1
vote
2 answers

Android InputMethodEditor layout file. Non-Key/Row elements in the XML?

I'm trying to implement a keyboard with a TextView that updates with each keypress, but it won't show up on the screen. It should appear above the top row of letters. When I run the keyboard, the keys show up with an extra row on top but nothing…
1
vote
1 answer

soft keyboard doesn't appear on ListView element (EditBox)

I know this question have one million answers but nothing works for my case. I have a custom dialog that contains ListView, and custom elements TextView and EditText. public static void createDialog(Context context, Activity activity) { …
Vasile Doe
  • 1,674
  • 1
  • 24
  • 40
1
vote
2 answers

Soft keyboard push up hidding action bar or overlay edittext

I have an issue with a simple layout. If I set android:windowSoftInputMode="stateHidden|adjustResize" this happens: Bug In any case this happens only If I open keyboard from landscape, then rotate (with keyboard open). In normal use (rotating and…
1
vote
1 answer

Soft Keyboard Style in Android

Is there any option to force soft keyboard normal style ? I mean - when soft keyboard is "normal style" everything looks fine, but when user has "split style" in his device keyboard covers half of edit text's. I've tried to set up…
Bartos
  • 1,007
  • 3
  • 15
  • 38
1
vote
2 answers

Android Soft Keyboard: How to manipulate views on keyboard on/off

I have a layout which has one large EditText view at the top + a bunch of buttons at the bottom. The EditText is made to shrink and expand when the ime is activated/deactivated by using adjust_resize. The buttons at the bottom are pushed up above…
OferR
  • 1,634
  • 19
  • 21
1
vote
1 answer

How to avoid cancellation of animator effect when soft keyboard appears?

In my app some views are resized by Animator and everything is OK till the soft keyboard appears. When I tap on EditText after animation finish the height of EditText backs to xml height right before the soft keyboard appears. The details: Let say…
LunaVulpo
  • 3,043
  • 5
  • 30
  • 58
1
vote
1 answer

How can I launch soft phoneType keyboard with numbers 0 to 9 and a + in it programatically in android?

I have a DialogFragment which has two EditText views. One takes email and another takes phone number of a friend. These two may be filled with a contact from contacts (I have a button that takes to contact picker). I am able to show the keyboard…
cgr
  • 4,578
  • 2
  • 28
  • 52
1
vote
1 answer

Disable default keybaord open on EditText click

I want that when i click on my EditText (messageText), if the keyboard is open i close it, else i close it. messageText.setOnClickListener(new View.OnClickListener(){ @OverridesetOnClickListener public void onClick(View v){ …
Isky
  • 1,328
  • 2
  • 14
  • 33
1
vote
2 answers

In my project keyboard should fixed in my Activity itself

In my project keyboard should fixed in my Activity itself without hiding that but in my code the keyboard automatically visible upon starting activity but problem is by clicking back button the keyboard was invisible. So can any one suggest answer…
KCN
  • 472
  • 6
  • 19
1
vote
1 answer

How can I get data from another ativity by non-Activity class

I have a soft-keyboard that dose not expands activity it has one button when I click on that I intent another app perfectly but when I want to get respond from that app which extends activity and has a button, the problem is that when I click that…
Sparks Sh
  • 109
  • 1
  • 12
1
vote
2 answers

How to send the images in input connection in Android?

I have a custom keyboard in my application which have full of images When I click the image I want to send the image to the input connection(i.e want to show the image in default edit text of the application)How to pass the image when the image is…