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

My Emoji Soft Keyboard is not supporting for Message EditText Field in android

My Emoji Soft Keyboard is not supporting for Message Edittext Field in android. But Other application like WhatsApp does supported. For example, In whatsapp and wechat application, TextField does support Emoji keyboard characters, but in my mobile…
Avanish Singh
  • 767
  • 2
  • 8
  • 32
1
vote
0 answers

Show softkeyboard in AlertDialog type SYSTEM_ERROR or SYSTEM_ALERT

I have an AlertDialog that comes over my active Activity (this is for a lock app) so i can block system buttons. public OverlayDialog(Activity activity, boolean backShouldWork, boolean justFinish) { super(activity,…
1
vote
1 answer

How to override voice input key on Android keyboard?

I created an Activity with a button, which when clicked, starts an Intent to launch the voice input as follows: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,…
Kajal
  • 581
  • 11
  • 24
1
vote
2 answers

Is there an option to have both soft and hard keyboards active?

I am developing a IME keyboard which will have a automobile dial pad as the input handler in android. More clearly, the dial pad turns decide which alphabet to select.if the dial pad is pointed to "a" and then click the center button of the dial…
JVN
  • 239
  • 2
  • 16
1
vote
1 answer

Create a custom keypad in android

I want to create a custom keypad in my android app that looks like this: https://www.dropbox.com/s/vwiz4o3pd8q4o81/2015-06-14%2014.53.02.jpg?dl=0 I have tried to use keyboardview but cannot get what I want. I have also looked at tutorials online on…
1
vote
0 answers

textinput.needsSoftKeyboard does not work (air for android)

I have a textbox in my project wich is in a movie clip. I have designed a new keyboard for my app and i dont want to see android keyboard when i tap on that textBox in movie clip. textinput.needsSoftKeyboard Is false for that textbox but when i…
1
vote
1 answer

EditText: suppress soft keyboard but allow selection and cursor?

I want to display an EditText which will be edited mostly by selecting parts of it and pressing buttons to insert new values. (The values are long hex strings which I don't want the user to have to type.) Therefore, I want to suppress the display…
Kevin Krumwiede
  • 9,868
  • 4
  • 34
  • 82
1
vote
1 answer

Is there a way to show emoji's button in soft-keyboard in a webview app?

Is no way to define something like an edittext with "textShortMessage" because is a web input. Overriding onCreateInputConnection of WebView and setting outAttrs.inputType = InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE; doesn't work. Or with…
1
vote
1 answer

how top layout fix in screen when keyboard up in android

I have a layout from buttons in top of screen and a scrollview in below of it.when keyboard come up it scroll total of screen to top and my buttons get hidden but i want my buttons fix in scren and only my scrollview scroll.any idea?
zohreh
  • 1,055
  • 1
  • 9
  • 26
1
vote
1 answer

Is there any API to recognize app is in multiwindow mode in samsung devices?

How to know currently app is opened in multi-window feature in Samsung devices? In my case onMeasure view, it considers any other app opened in bottom as keyboard visible. Also is there any method to reliably check keyboard is visible.
1
vote
0 answers

How to use searchView.setIconified(false) method without showing the softkeyboard at the same time

I'm using this method to show opened searchview at the start of activity. As I'm using few fragments in activity I'm calling this method in onPrepareOptionsMenu callback. Behavior I was going for was, show opened searchView and softkeyboard at the…
Munez NS
  • 1,011
  • 1
  • 12
  • 31
1
vote
1 answer

Show a popup with custom numeric keypad beside a view

Probably this was answered before but I haven't found a good answer yet. I'd like to show a numeric keypad when an user press a textView. I already have done that part. What I'm missing is to show a popup with the numeric keypad beside my textview.
Gabriel Muñumel
  • 1,876
  • 6
  • 34
  • 57
1
vote
0 answers

NavigationDrawer activity doesn't keep keyboard's state on orientation change

I created sample project using Android Studio: Create new Project -> Navigation Drawer Activity. In testing purposes, my content Fragmentcontains just a single EditText widget. In my AndroidManifest I have this line for the main…
fraggjkee
  • 3,524
  • 2
  • 32
  • 38
1
vote
1 answer

Which is the default submit button in Android when pressing GO button on keyboard?

I have web app in Adnroid. I have two submit buttons inside. When I press go button on the keyboard one of then is always selected. Is there a way to manage which button is selected. How to determine which is the default submit button?
Bogdan Bogdanov
  • 1,707
  • 2
  • 20
  • 31
1
vote
1 answer

Start Activity from Soft Keyboard WITHOUT hiding the soft keyboard

I know this should not be a big challenge but it really drives me insane. I am developing a simple soft keyboard input method and basically I have added a button to my softkeyboard, by pressing which, a dialog should pop up to prompt user to do some…
jinnancun
  • 123
  • 1
  • 2
  • 11
1 2 3
99
100