Simple text editor in Android

How can I implement an editor with font styles, sizes and colors in Android. And how can I save a note and open it after creating a note with all these styles.

+3
source share
1 answer

Why don't you store it as HTML? :) Just like that.

if you want to complicate it a bit, you have to store all the Spannable data in XML format and parse it and restore the styles when displaying it.

+1
source

All Articles