mthli / Knife

Knife is a rich text editor component for writing documents in Android.
Apache License 2.0
2.11k stars 244 forks source link

Underline #14

Open Kvazios opened 7 years ago

Kvazios commented 7 years ago

Hello! Keyboard automatically underline last word (for suggestions), but Knife.toHtml() saves this underline. Any suggestions, how to solve this?

Kvazios commented 7 years ago

Okay, after some research, I'm found this solution:

knife.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
knife.setSingleLine(false);
scottyab commented 3 years ago

I'm seeing underline of the first word, for some reason, setting the inputType and setSingleLine(false) didn't work for me 🤔