diff --git a/Ports/Android/src/com/codename1/impl/android/InPlaceEditView.java b/Ports/Android/src/com/codename1/impl/android/InPlaceEditView.java index ca0bc39960..04b68dff3c 100644 --- a/Ports/Android/src/com/codename1/impl/android/InPlaceEditView.java +++ b/Ports/Android/src/com/codename1/impl/android/InPlaceEditView.java @@ -1025,7 +1025,7 @@ public boolean onActionItemClicked(ActionMode mode, Editable spannable = mEditText.getText(); Selection.setSelection(spannable, 0, spannable.length()); } - + /* // Leaving this hack here for posterity. It seems that this manually // blinking cursor causes the paste menu to disappear @@ -1258,7 +1258,7 @@ public void run() { if (fHasNext && fNext != null) { Display.getInstance().callSerially(new Runnable() { public void run() { - final Form f = fNext.getComponentForm(); + final Form f = fNext.getComponentForm(); if (f == null) { return; } @@ -1270,7 +1270,8 @@ public void actionPerformed(ActionEvent evt) { fNext.startEditingAsync(); } }); - + if(EditorInfo.IME_ACTION_NEXT == fActionCode) + fNext.requestFocus(); } }); }