If I have more that one TextArea Components, the Keyboard close and Open while I'm moving to next TextArea. See the video link. https://drive.google.com/file/d/1DP1aTvtNxNJ5s9DJ8MQeW9n8BAXid6yP/view?usp=sharing I'm using this code to move between TextAreaComponents. private void editNextDigit(TextArea editing, TextArea nextEditing) { editing.stopEditing(new Runnable() { @Override public void run() { //nextEditing.requestFocus(); nextEditing.startEditingAsync(); } }); editing.getParent().revalidateWithAnimationSafety(); }