We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only one line content is showing ,until you tab on it.
The text was updated successfully, but these errors were encountered:
Facing the Same Problem
Sorry, something went wrong.
I found a workaround for this if anyone facing the same problem makes edit text focusable.
use this: `public void showSoftKeyboard(View view, boolean isShow) { InputMethodManager inputMethodManager = (InputMethodManager) getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE); view.requestFocus();
if (isShow) { inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0); } else { inputMethodManager.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0); } }`
**and Call: **showSoftKeyboard(getBinding().createSkillsEt, true); showSoftKeyboard(getBinding().createSkillsEt, false);
showSoftKeyboard(getBinding().createSkillsEt, true); showSoftKeyboard(getBinding().createSkillsEt, false);
Now it will show perfectly. (It's not the proper solution)
No branches or pull requests
Only one line content is showing ,until you tab on it.
The text was updated successfully, but these errors were encountered: