How to make the Datatype indicator at the right of a TextField disappeared when clicking the left or right arrow keys?

StackOverflow https://stackoverflow.com/questions/9124131

  •  22-04-2021
  •  | 
  •  

Frage

There is a TextField populated by a value from a RecordStore , and the carret position is at 0 when navigating to the TextField. I need to go to a certain character position within the TextField's text. But when I click the right navigational button or when I press a character key then something like a tooltip with a text Abc is displayed automatically at the right of the TextField.

So how to make this "Abc" disappear ? Here is a captured image of the situation: enter image description here

War es hilfreich?

Lösung

I found the solution : I added this code setInputModeOrder(new String[]{"Abc"});

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top