Android TextView
Android TextView:
TextView is a widget or UI component that is used to display text to the user.
It is a fundamental building block for creating user interfaces in Android applications.
Example:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/firstText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="First Text"
android:textSize="25sp"
android:textColor="@color/colorPrimary"
android:textStyle="normal"
android:gravity="center"
android:layout_marginBottom="15dp"/>
<TextView
android:id="@+id/secondText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Second Text"
android:textSize="28sp"
android:textStyle="italic"
android:textColor="@color/colorAccent"
android:gravity="center"
android:layout_marginBottom="15dp"/>
<TextView
android:id="@+id/thirdText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Third Text"
android:textStyle="bold"
android:textSize="30sp"
android:textColor="@color/colorOrange"
android:gravity="center"
android:layout_marginBottom="15dp"/>
</LinearLayout>
Output