Simple RichText Editor on Android

I want to create a simple text editor in Android like this app in Google Play Store: https://play.google.com/store/apps/details?id=com.spn.richnotepad&hl=en

and i am very new to android so everyone can give some idea about this. Thank you.

+3


source to share


2 answers


Find some quick fixes:



Also check the following discussions:

+1


source


It's not difficult, but before you start, I highly recommend that you read the guide from the Android developer site: https://developer.android.com/training/basics/data-storage/index.html
You will learn how to save data that is a very important part of your project.

Then you need to know all about the EditText (allows the user to enter text into your application) and the TextView (displays text on the screen).

http://developer.android.com/guide/topics/ui/controls/text.html

When your application is complete, you can add additional functionality:



Some useful links:
http://developer.android.com/reference/android/widget/EditText.html
http://developer.android.com/reference/android/widget/TextView.html

I also advise you this Notepad tutorial to guide you step by step to create a simple note list that allows the user to add new notes.
http://developer.android.com/training/notepad/index.html

+7


source







All Articles