Questions tagged [ime]

IME stands for "Input Method Editor", and refers to systems that allow users to input characters and symbols not found on their keyboard. They are commonly used to input Chinese, Japanese, and Korean (CJK) characters.

500 questions
12
votes
2 answers

Detecting IME input before enter pressed in Javascript

I'm not even sure if this is possible, so apologies if it's a stupid question. I've set up an keyup callback through jQuery to run a function when a user types in an input box. It works fine for English. However when inputting text in…
benui
  • 6,440
  • 5
  • 34
  • 49
12
votes
2 answers

How to create multiple IME (Input Method Editor) subtypes on Android?

I am attempting to create multiple IME subtypes, but Android will only recognize one. method.xml
Rdbhost
  • 929
  • 2
  • 8
  • 20
12
votes
1 answer

How to get the IME layout in C# Winform specially in Wndproc?

I have a winform application, I want to get the information of current typing language in C#. I have windows 10 machine, I have selected Korean language. There is one toggle button in taskbar to change input language as English or Korean once I…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
11
votes
1 answer

Android IME of multiple steps to compose a glyph

Assume there is a character' 暂' that I want to write using a custom Android IME. If I want to show the said glyph when I press the key "G" followed by "E", how do I go about it (G itself is assigned to another code). I know I can assign many…
Andromeda
  • 1,370
  • 2
  • 10
  • 15
11
votes
7 answers

Android custom keyboard layout leaving a margin of white at the side

I'm working on a custom keyboard for Android, and I've run in to an issue where the keyboard seems to leave a white line/space at right, instead of filling the parent view... (don't mind the icons, it's simply placeholder graphic for now) Below you…
user969043
  • 756
  • 2
  • 13
  • 34
10
votes
1 answer

How to Determine Text Cursor Position in Windows

What is the best way to determine the screen co-ordinates of the currently active text input cursor? I need this for an in-line transliteration program so that I can display some suggestions options to the user as the text is entered.
dparakh
  • 170
  • 1
  • 7
10
votes
1 answer

How to take Korean input in Winform?

I want to type Korean text in my editable area inside a WinForms application. But Characters are repeating, I have tried to override the default WndProc, but nothing working. switch (m.WParam.ToInt32()) { case…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
10
votes
1 answer

Putting IME in a custom text box, derived from Control

I have created my own single-line textbox control in C# .net 3.5 I've written this completely from scratch, including my own selection code, scrolling, copy/paste etc. It can even select left-to-right text, not that I'd ever use that... The problem…
Vincent McNabb
  • 33,327
  • 7
  • 31
  • 53
10
votes
7 answers

Need number only soft keyboard?

Hi I need a soft keyboard with only numeric values 0 to 9 and Enter key. Shouldn't show anything other than these like . , ( ) etc... I tried several options as suggested here but nothings seems to work for…
Akh
  • 5,961
  • 14
  • 53
  • 82
9
votes
1 answer

Android soft keyboard not panning web view

The original problem I am fighting is more complex but for investigating purposes I have simplified the test case to the following: Single fullscreen activity Programmatically created web view that occupies roughly half of the horizontal screen…
dizzymonkey
  • 91
  • 1
  • 2
8
votes
0 answers

SOFT_INPUT_ADJUST_RESIZE deprecated. But other flags are not. What is the new recommended way of changing inputType mode at runtime?

In my app I use single activity - MainActivity with multiple fragments. In Manifest file I set activity's windowSoftInputMode to adjustResize because I need that behaviour in majority of fragments where keyboard is shown.
Marat
  • 6,142
  • 6
  • 39
  • 67
8
votes
2 answers

How Can I Make oninput() Trigger Only When Chinese Characters, Not IME Keystrokes, Are Entered?

I have a basic . However, when I type in Chinese, oninput is also triggered by the IME inputs, not just the resulting characters. For example, when I type "我們" with my Pinyin IME, and my function funct()…
Joshua Harwood
  • 337
  • 1
  • 2
  • 15
8
votes
1 answer

MSKLC under Windows 10: Create custom keyboard layout which supports IME (input method) for Chinese and combined input in Spanish

This question is originally posted by me in Microsoft Community at: https://answers.microsoft.com/en-us/windows/forum/windows_10-other_settings/msklc-under-windows-10-create-custom-keyboard/8c5a7137-d575-4247-8ab3-b4dd1e5fb437?tm=1495318604424 In…
WesternGun
  • 11,303
  • 6
  • 88
  • 157
8
votes
2 answers

Is there a way to programmatically combine Korean unicode into one?

Using a Korean Input Method Editor (IME), it's possible to type 버리 + 어 and it will automatically become 버려. Is there a way to programmatically do that in Python? >>> x, y = '버리', '어' >>> z = '버려' >>> ord(z[-1]) 47140 >>> ord(x[-1]), ord(y) (47532,…
alvas
  • 115,346
  • 109
  • 446
  • 738
8
votes
1 answer

Android: How to set prefered keyboard view mode from IME

I am developing an android IME and I want my keyboard to work only "pan and scan" and "resize" mode, not in "fullscreen" (as explained here) or at least request to prefer the "resize" mode. I know that there is a way to set this from EditText but…
bendaf
  • 2,981
  • 5
  • 27
  • 62
1
2
3
33 34