SHOW_IMPLICIT instead of SHOW_FORCED

SHOW_FORCED was keeping the keyboard up even when selecting
title control lost focus
pull/253/head
Alex Baker 10 years ago
parent e1776cde8b
commit 81fa822245

@ -504,7 +504,7 @@ ViewPager.OnPageChangeListener, EditNoteActivity.UpdatesChangedListener {
title.requestFocus(); title.requestFocus();
title.setCursorVisible(true); title.setCursorVisible(true);
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE); InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0); imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT,0);
} }
} }
} }

Loading…
Cancel
Save