我想在Android中创建一个简单的富文本编辑器,就像google play store上的这个应用程序一样:https://play.google.com/store/apps/details?id=com.spn.richnotepad&hl=en
我在android中非常新,所以任何人都可以提供一些关于它的想法。 谢谢
答案 0 :(得分:9)
根本不难,但在你开始之前我强烈建议你阅读Android开发者网站上的指南:
https://developer.android.com/training/basics/data-storage/index.html
您将学习如何保存数据,这是项目中非常重要的一部分。
然后您必须了解 EditText (允许用户在您的应用中键入文字)和 TextView (在屏幕上显示文字)。
http://developer.android.com/guide/topics/ui/controls/text.html
当您的应用完成后,您可以添加一些其他功能:
一些有用的链接:
http://developer.android.com/reference/android/widget/EditText.html
http://developer.android.com/reference/android/widget/TextView.html
我还建议您使用记事本教程,它将指导您逐步构建一个简单的备注列表,让用户添加新备注。
http://developer.android.com/training/notepad/index.html
答案 1 :(得分:2)
找到一些快速解决方案:
同时检查以下讨论:
答案 2 :(得分:1)
看看这个https://github.com/chinalwb/Android-Rich-text-Editor,它仍在进行中,但你可能会从那里得到一些指示。感谢。