Android中的简单RichText编辑器

Ank*_*ary 7 android android-edittext

我想在Android中创建一个简单的富文本编辑器,就像google play store上的这个应用程序一样:https://play.google.com/store/apps/details? id = com.spn.richnotepad&hl = en

我是非常新的android所以任何人都可以提供一些想法.谢谢

vov*_*ost 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