Css Styles In Android Rich Text Editor Not Working
Solution 1:
The rich text editor supports the formatting mentioned in the readme.md. The conversion from and to html is simply to be able to save and load the edited text but is not a universal html converter supporting every attribute. The component could use any format to save the text (rtf, markdown, your own format you name it). If you want to import text from a docx file you'd have to write your own import/export converter which is possible. If you want to import specific html formatting you can enhance the existing html converter (e.g. to support colored text from a style sheet). You can import / convert everything the rich text editor supports but there's no point in trying to import e.g. tables since those aren't supported by the editor (there's no spanned equivalent for tables).
Post a Comment for "Css Styles In Android Rich Text Editor Not Working"