Android TextView Widget
Android TextView widget displays text.
Sample Code
<TextView
android:id="@+id/text_view_greeting"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"
android:textSize="25dp"
android:text="Hello World!" />
Screenshot
Android TextView Tutorials
To change the text size of TextView widget, refer
Android TextView – Text SizeTo change the shadow of text in TextView widget, refer
Android TextView – Text ShadowTo change the text color of TextView widget, refer
Android TextView – Text ColorTo change the maximum length allowed for text in TextView widget, refer
Android TextView – Maximum LengthTo change the text style to bold in TextView widget, refer
Android TextView – Bold TextTo change the text style to italic in TextView widget, refer
Android TextView – Italic TextTo change the style of text in TextView widget, refer
Android TextView – Text StyleTo center align text in TextView widget, refer
Android TextView – Center Align TextTo change the border of TextView widget, refer
Android TextView – BorderTo change the background color of TextView widget, refer
Android TextView – Background ColorTo convert URLs to links in TextView widget, refer
Android TextView – URLs to Links