The InputMethod interface represents an input method which can generate key events and text, such as email addresses, other language characters, etc., while handling various input events, and send the text back to the application that requests text input
Questions tagged [android-input-method]
427 questions
0
votes
1 answer
Save keyboard state in Android input method
I am writing an InputMethodService, basically just a soft keyboard, from which I start another activity:
class Foo extends InputMethodService {
// ...
private void startNewActivity() {
Intent i = new Intent(this, NewActivity.class);
…

Whymarrh
- 13,139
- 14
- 57
- 108
0
votes
1 answer
Reading input of hardware keyboard within application
I want to know if there is any provision that allows me to read the input key from a hardware keyboard present on the phone or connected externally in android . I basically am building an application that needs to have special shortcuts set . I…

Saiesh
- 641
- 2
- 7
- 23
-1
votes
1 answer
How to display input method picker list title and summary in textview android?
i am sing keyboard view to select. After selecting the keyboard, how to display the selected keyboard text in textview android?
i can display only language but how to display the Title and summary for change keyboard?
public class MainActivity…

Star
- 735
- 3
- 13
- 34
-1
votes
1 answer
Android keyboard. Disable keys
How can I "disable" (don't draw it pressed) keyboard's keys (but touching key) then I slide upon the keyboard?

Scit
- 1,722
- 4
- 15
- 18
-1
votes
1 answer
ScrollView scroll up when typing
First, I have multiple EditTexts in a Framelayout which wrapped by a ScollView.
I already use below code to let ScrollView scroll up when keyboard is shown -
((Activity)…

Bob
- 34
- 5
-1
votes
3 answers
one back-button click lowers a soft-keyboard and exits activity at the same time
I am starting my softkeyboard in my ActivityB with this lines in my manifest
Now I would like…

user101
- 595
- 1
- 4
- 18
-1
votes
2 answers
Prevent user from changing input method
Is it possible to prevent a user from changing input method/keyboards?
I know it's not allowed by default but maybe with some security/IT device administration feature it is possible?
I've been looking around but couldn't find a definitive answer.

Bended
- 494
- 1
- 7
- 22