fahad005

TextView (xml)

Aug 28th, 2022
1,287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    tools:context=".MainActivity">
  7.  
  8.     <TextView
  9.        android:id="@+id/test_text"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent"
  12.        android:text="@string/test"
  13.        android:gravity="center"
  14.        android:textStyle="bold"
  15.        android:textSize="20sp"
  16.        android:textColor="@color/teal_200"
  17.        android:textColorHighlight="@color/purple_200"
  18.        />
  19.  
  20. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment