An InputConnection is used in Android for an input method editor (IME) to communicate text changes to an editor (like EditText).
Questions tagged [inputconnection]
34 questions
0
votes
1 answer
Android Studio: Problems with WebView.onCreateInputConnection
I wrote a webview application for some Android 4.2 device with a custom inapp keyboard. In fact, the app runs without any error on devices with Android 4.2.
I know this is a very old android version, this is reason why I got now a new device with…

SerCode
- 11
- 3
0
votes
1 answer
InputConnectionWrapper is not finalized and is causing a memory leak in Android
In certain situations, I create an EditText, pass the value to another Fragment, and then call removeAllViews on the ViewGroup that the EditText belongs to remove EditText.
The problem is that the InputConnectionWrapper associated with the EditText…

H.Kim
- 525
- 4
- 14
0
votes
1 answer
BaseInputConnection methods not called for physical keyboards
I have a custom EditText that supplies a Custom BaseInputConnection object in its onCreateInputConnection() method. The problem is that the methods like commitText() and deleteSurroundingText() are being called for soft keyboards but not called for…

Siva
- 355
- 1
- 6
- 19
-2
votes
3 answers
I want to get whole text from third party app
I have my own custom keyboard so using the keyboard's inputs method I am getting a whole text from edit text whether it is from my own app or even from a third-party app. Everything working properly expects all Microsoft applications. They provide…

Pravin Suthar
- 1,403
- 1
- 14
- 25