Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
54 views

I’m trying to build a system where a console application (e.g. Neovim running inside Windows Terminal) can call a background program (a daemon). This daemon should detect IME (input method) changes in ...
bowen951209's user avatar
0 votes
1 answer
98 views

The keyboard APIs of Win32 (Windows API family) are known to be confusing, and there are lots of SO answers about how to display approximate information to a human with enough polyglot skills to ...
jb_dk's user avatar
  • 129
0 votes
0 answers
41 views

I want to implement a custom text editor widget on Android, and my documents are tree structures like HTML, not plain strings like a text field. From what I can tell so far, I need to implement the ...
Rob N's user avatar
  • 16.7k
3 votes
0 answers
219 views

I struggle with a edge-to-edge issue and it seems impossible to me. I have the feelings Google devs have forgotten something for this update… Maybe this is just a skill issue from my side. Since ...
JULIEN DUMONT's user avatar
3 votes
1 answer
175 views

Problem Description I'm experiencing a problem concerning font configuration in Tkinter. The constructor of all Tkinter widgets have a font keyword argument which allows you to configure the font used ...
I Like Python's user avatar
0 votes
1 answer
65 views

How to scroll the list to the bottom when keyboard is shown in Compose? Now I have the following solution: val isImeVisible = WindowInsets.isImeVisible LaunchedEffect(isImeVisible) { if (...
SpiralDev's user avatar
  • 7,381
0 votes
0 answers
89 views

I just encountered What is JavaScript's CompositionEvent? Please give examples From the little images/videos available on the topic, and given that I only ever really use a English/Latin keyboard ...
Lance Pollard's user avatar
0 votes
0 answers
31 views

Currently, I'm developing a custom IME for Android. A core concept would be that the buttons of the keyboard "float to the edges" and "allow interaction with the underlying app" ...
Stefan Kamphausen's user avatar
1 vote
2 answers
90 views

I have this javascript function for allowing numeric input only window.addNumericInputValidation = function (elementId) { var $element = $("#" + elementId); // First remove any ...
Đức Thành Nguyễn's user avatar
-1 votes
1 answer
67 views

Description I'm encountering a peculiar issue with my TSF implementation on Windows 11. My custom IME generally works well with multiple input methods when implemented in a separate thread isolated ...
jamie's user avatar
  • 1
1 vote
0 answers
131 views

I implemented a custom software keyboard using Compose to build the UI part and InputMethodService() for IME function interaction. It works as expected. However, memory leak ...
Pretorian's user avatar
  • 178
0 votes
0 answers
52 views

I've got an Android project using a WebView to display a WebApp. In this app, there are some text input fields. In order to avoid hiding the field while opening the keyboard, the .imePadding() has ...
Gab's user avatar
  • 1
1 vote
0 answers
100 views

I have a special input method installed on my Linux laptop, Chewing from Fcitx 5 for Chinese traditional. But when I type something inside the GtkTextView, only English alphabets appears. I found ...
Eric Nien's user avatar
1 vote
0 answers
340 views

Every time I switch to Japanese keyboard, pop up appears saying: 'Some of the functions of Mircosoft IME are currently restricted. The current active application is running in protection mode. Some ...
GodotBlend102's user avatar
4 votes
0 answers
76 views

I want to provide possibility to enter Chinese characters in JavaFX in Windows. This is my test code for TextArea: public class Foo extends Application { public static void main(String[] args) { ...
SilverCube's user avatar
  • 1,148
5 votes
1 answer
694 views

So I have this BottomSheetScaffold layout with a CenterAlignedTopAppBar and a bottom sheet with some text fields. Below are modifier that I presume might be useful: // root composable, NavHost ...
scriptSQD's user avatar
  • 398
2 votes
2 answers
269 views

I've tried all kinds of insets padding, window insets, consume insets (because I don't even really understand window insets)... nothing is working. I tried to look it up, but everyone has the exact ...
sardonicus87's user avatar
0 votes
1 answer
171 views

In an older Win32 non-unicode app, I've got a text editor that handles IME in the following messages - WM_IME_COMPOSITION: ... if (lParam & GCS_RESULTSTR) // flag to say the IME character has ...
craker's user avatar
  • 77
0 votes
0 answers
57 views

I'm developing a .NET WPF application, and my client requires a custom Japanese input keyboard. The input method is not through a physical keyboard but via UI buttons that input each character. Here ...
Maomaoyu's user avatar
1 vote
1 answer
210 views

I made a Qt desktop app that has a QVulkanWindowRenderer and made a text box appear inside the Vulkan renderer window using Imgui. I can type into it as expected in English but when I try to switch ...
TheSlyOne's user avatar
1 vote
0 answers
44 views

I created 2 empty files in VS Code, one with UTF-8 encoding(file.utf8.txt) and the other with GB 2312 encoding(file.gb2312.txt). If we use the od command to view the contents of these 2 empty files, ...
da_miao_zi's user avatar
2 votes
0 answers
213 views

I'm having trouble understanding how imePadding() and BringIntoViewRequester() work. I have made a signup view and I believe I have applied imePadding correctly to the text field modifiers. But for ...
LennyPK's user avatar
  • 21
-1 votes
2 answers
217 views

function NumberKey(event) { let charCode = event.which || event.keyCode; console.log(event.keyCode) if ((charCode >= 48 && charCode <= 57) || // Number (0-9) (...
Harry Kim's user avatar
0 votes
1 answer
263 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
4 votes
1 answer
848 views

I am a noob in mobile app development. Scenario Within Dialog, within Column, I have a text field and a Button. (Button belongs to material3. For the text field, I have tried various ones available ...
S R Samy's user avatar
1 vote
2 answers
729 views

The korean layout has alphabet mode and hangul mode. I only need hangul mode in the korean layout. To suppress alphabet mode I wrote this code but I could not find the way to get current IME mode. ...
ironsand's user avatar
  • 15.4k
1 vote
0 answers
24 views

(1) I have a form of html inputs, some of which are allowed to type in halfwidth hiragana, the others are allowed to type in fullwidth katakana. (2) Now, I need a way to automatically switch user ...
Huy Dinh Ngoc Quang's user avatar
1 vote
1 answer
1k views

I have a textField in which I want to listen to the newLine(Enter) and perform action accordingly. I didn't find any dedicated action button for this specific purpose. I tried using onKeyEvent but ...
Curious Head's user avatar
5 votes
0 answers
811 views

I have multiple TextFields and with the ime action Next the user can jump until the last one which has the ime action Done. What I have noticed is that, even the cursor is inside the last TextField, ...
rimes's user avatar
  • 931
1 vote
2 answers
415 views

Rime is an input method engine for entering Chinese characters, supporting a wide range of input methods.fcitx5-rime is the rime running on fcitx5 input method framework. I have installed fcitx5-rime ...
showkey's user avatar
  • 375
1 vote
1 answer
263 views

I'm working on a C++ program that receives user's keyboard input on Windows 10. Users can input English and East Asian languages like Chinese using Input Methods and US keyboard. The program gets ...
LR55's user avatar
  • 31
5 votes
1 answer
3k views

If we have a customized AlertDialog containing some input field, selection of that component would prompt the IME virtual keyboard of the device to pop up. Now, if we dismiss the entire AlertDialog by ...
mindoverflow's user avatar
0 votes
1 answer
536 views

I've gotten two issues recently which I suspect are related to the same fact. The first problem: I noticed none of my EditTexts were pulling up the soft input keyboard (they always did previously), ...
CLR 123's user avatar
  • 161
1 vote
0 answers
57 views

I'm building android keyboard application and I want to support modern emojis on the app. Is there is a library or a simple way to implement emojis with android KeyboardView I've tried some ways to ...
Hamid AK's user avatar
0 votes
1 answer
726 views

hope you are doing well, basically I want save the value unique id for device which is non-resettable Is it possible to get IMEI, Serial number for above android 11? I want to use it within ...
Shaikh Danish's user avatar
0 votes
1 answer
54 views

I can't find the Microsoft documentation for the WM_IME_REPORT window procedure message anymore. Has it been obsoleted? We handle the WM_IME_REPORT message in our window procedure, but during testing, ...
Daniel LB's user avatar
0 votes
1 answer
364 views

I can't get an IME to work with a Qt Widget (the goal is to write Japanese characters with a western keyboard). I can't activate the IME in the taskbar when I launch a simple test software (a ...
Usaginomimi's user avatar
0 votes
1 answer
623 views

I have a custom text entry rendered via SkiaSharp in my Xamarin project, and I need to access the Android keyboard so that I can enter text. I can bring up the keyboard using: Window.DecorView....
user avatar
4 votes
1 answer
602 views

Working on a project where handling various languages (Japanese, Chinese etc.) as well as handling different language directions (right-to-left, left-to-right and the combinations of the two) is ...
Martin Janíček's user avatar
0 votes
1 answer
103 views

I have finished my ime custom keyboard. But I have some problems. When I type something into first textField and than try to type into second textField I can't delete anything into secon textfield. ...
Дмитрий Малигон's user avatar
0 votes
1 answer
311 views

I'm writing a program using IME composition on Windows 10. The program uses DefWindowProc to handle all WM_IME_ message in a specific thread and check IMM context in another thread. When I want to ...
依奈ちゃん's user avatar
0 votes
1 answer
320 views

I've been trying to figure out how to capitalize letters in my custom IME keyboard. I created capitalize key but I don't know what I have to put into clickable(interactionSource = interactionSource, ...
Дмитрий Малигон's user avatar
0 votes
1 answer
37 views

I developed a IME for Android that connects on bluetooth device and receive reading from it but still expose a conventional software keyboard. The problem is that if I hide the keyboard, the bluetooth ...
Ney Candido's user avatar
2 votes
0 answers
60 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
22 votes
4 answers
13k views

I have a pinned bottom container with a textfield. And i use imePadding modifier. When keyboard appears seems like imePadding works twice. It happens only on some devices. Particular my is Samsung ...
Vadim Zhukov's user avatar
1 vote
1 answer
1k views

We are having trouble with the usage of Windows Chinese Bopomofo keyboard in our App in an RTF control. (that is a different story now) I am debugging, and noticed while the Bopomofo keyboard is in &...
Zoli's user avatar
  • 941
1 vote
0 answers
163 views

I am developing a Winui 3 (Windows App SDK) application in which I need a Hindi input functionality in textbox with Remington GAIL keyboard Layout, from my research I found that the Hindi Indic Input ...
Sidhu Shivakoti's user avatar
0 votes
0 answers
374 views

I'm creating a custom keyboard in android but in android to create a custom keyboard we need to pass the keyboard XML to generate the keyboard view(XML code below). I want to design my own keyboard ...
Prasath S's user avatar
  • 3,614
2 votes
1 answer
1k views

Is there a way to turn on IME-mode japanese when input in chrome . I know style style="ime-mode:active" is not supported for chrome browser. Anyone have any other way for chrome ? when the ...
Tin huynh's user avatar
1 vote
1 answer
837 views

I'm currently creating a keyboard that needs to be able to get Data from a View Model that I've created. The problem arises to the fact that the Keyboard is not able to be recomposed when any type of ...
Paras Khanchandani's user avatar

1
2 3 4 5
11