Skip to main content
0 votes
0 answers
56 views

I'm developing a custom keyboard using InputMethodService. In my implementation, I override the onUpdateEditorToolType(toolType: Int) method to detect when the user taps into an input field. On ...
pingan li's user avatar
0 votes
0 answers
52 views

I feel a little lost. I've created a subclass of TextureView which should support text input via keyboard. I've tested my code on physical device with Android 12 and Emulator and it works fine. But, ...
Genealogy's user avatar
1 vote
0 answers
56 views

I want to intercept all KeyEvents in Activity regardless of focus. Minimal working example: class MainActivity : ComponentActivity() { @SuppressLint("RestrictedApi") override fun ...
mushko's user avatar
  • 51
1 vote
2 answers
434 views

I was using LocalTextInputService and TextInputService to show my own custom input TextField in app. But they are deprecated in compose 1.7.0 and as result CoreTextField is stopped receiving ...
MisterFlyBear's user avatar
0 votes
1 answer
223 views

Context: I am developing an app that implements a custom input method (a custom keyboard). It builds fine, and I can enable and switch over to the keyboard manually, but every time I launch the app ...
Ethan Porcaro's user avatar
0 votes
1 answer
300 views

Error: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.inputmethod.latin.CarIME" on path: DexPathList[[zip file "/data/app/~~6CnZ_EwlgHaoEjQXjHx4lA==/com....
Aman Srivastava's user avatar
1 vote
0 answers
421 views

I have my own custom keyboard created with jetpack compose, in my custom keyboard there's a feature that shows a textfield and we can type that textfield with the keyboard too, so I have to switch ...
galihif's user avatar
  • 454
0 votes
2 answers
359 views

When I use inputType as "textUri", Suggestion text input is not displaying. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://...
Shadow's user avatar
  • 6,929
0 votes
1 answer
202 views

I have a simple InputMethodService implementation: class MyKeyboardView : InputMethodService() { override fun onCreate() { super.onCreate() Timber.d("onCreate") } ...
artem's user avatar
  • 16.9k
1 vote
0 answers
753 views

I'm going to develop a custom keyboard, but I don't understand the sequence of steps that I need to perform in order for everything to work properly. My requirements: the keyboard should automatically ...
testivanivan's user avatar
  • 1,554
0 votes
1 answer
68 views

I am trying to create custom keyboard for android system with Buttons and it is working fine. But now I want to add key preview. I am new in android, plese help me if it is possible showing ...
SHIMON HANSDA's user avatar
2 votes
0 answers
77 views

I have a soft keyboard app. I am trying to getSelectedText() of the EditText in order to handle occasions when user has selected some text. I need to do this because my app does not access the app ...
ZookKep's user avatar
  • 511
2 votes
2 answers
2k views

I have been wrestling with IME padding/adjustment for my app. I have written a little toy app to try and focus on just the problem. The app presents a scrollable list of cards with info on them, the ...
Travis Griggs's user avatar
0 votes
1 answer
769 views

I found the subject statement in Handle input method visibility section I would like to try to open my keyboard on activity start. However, my only EditText is not focused on activity start. My layout ...
Howard Lau's user avatar
1 vote
1 answer
186 views

I need to simulate typing text with char-by-char delays using soft input keyboard on a WebView. I can't use WebView#dispatchKeyEvent because it's not suitable for typing Unicode text and does not ...
hldev's user avatar
  • 1,484

15 30 50 per page
1
2 3 4 5
29