How to create TextArea in Android
Hi Android coders!!!!!
So if you want to add TextArea in your Android App then you will notice that there is no TextArea available for Android. but TextArea is available for all other platforms like html,iOS,C# etc. But in android there is only EditText widget which is editable.
So what to do now?
But there is still an option available to make TextArea widget in android app. you can modify EditText so it can behave like TextArea. first of all figure out difference between EditText and TextArea so that we can easily modify EditText
TextArea is multiline
TextArea is scrollable from inside, so we can view all text inside textarea.
Text in TextArea start from Top-Left corner.
TextArea is box type.
TextArea can be scroll from top to bottom and right to left.
So we can add these features to normal EditText widget of android.














