Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <layout>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".MainActivity">
- <TextView
- android:id="@+id/nameText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:text="Fahad"
- android:fontFamily="cursive"
- android:textColor="@color/white"
- android:textSize="40sp"
- android:textStyle="bold"
- android:textAllCaps="true"
- android:visibility="visible"
- android:padding="10dp"
- android:background="#0048FF"
- android:backgroundTint="#FF0000"
- />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement