4

I'm building an Android App where users need to be able to edit their own content, including minimal layout. I just want to store the formatted source in the database and pull it out and display it the way I would with something like TinyMCE in a web app.

Any ideas how users can enter and format their own content in an Android GUI?

Thanks!

Brian Lacy
  • 18,785
  • 10
  • 55
  • 73

2 Answers2

2

There is no rich editor widget built into Android. Perhaps you can convince the person who asked this question an hour or so ago to make his open source.

Community
  • 1
  • 1
CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
2

There is an open source EditText rich text editor called android-richtexteditor but the code was inexplicably deleted in r5. The code is still there in r4 in older revisions; just use svn to check out r4 or earlier to access it. The code appears to support italics, underline, color picker, text size, and more.

Also answered in these questions:

  1. http://code.google.com/p/android-richtexteditor/
  2. https://stackoverflow.com/q/5632392/403455
  3. https://stackoverflow.com/q/4283755/403455
Community
  • 1
  • 1
Jeff Axelrod
  • 27,676
  • 31
  • 147
  • 246