Android Textview for Beginner | What is Textview in Android .

   What is Textview in Android ?


~> android textview is display text on android app .

~> textview is just view that displaying readable content on Android Applications.

~> textview and other components of Android app development have some property that some requirements of develop android app .

~> for example if you try bold the text on android app you can use android:textStyle="bold" . 



So , Here Give Simple Code of Textview .


<TextView
android:text=" hello_world"

android:layout_width="wrap_content"
android:layout_height="wrap_content" /> 


1. on the Top " Text Property " is use for writing text in android application 

2. Layout Width  Property is use for set width of textview component.

3. Same Layout Height Property is use for set height of textview component.

I'm Share Some Basic Of Android Textview that use For You ๐Ÿ˜Š .