Knife
Knife copied to clipboard
Underline
Hello! Keyboard automatically underline last word (for suggestions), but Knife.toHtml() saves this underline. Any suggestions, how to solve this?
Okay, after some research, I'm found this solution:
knife.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
knife.setSingleLine(false);
I'm seeing underline of the first word, for some reason, setting the inputType and setSingleLine(false) didn't work for me 🤔