1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 android:id="@+id/relativeLayout" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:background="@color/darker"> 9 10 11 12 <TextView 13 android:id="@+id/textView23" 14 android:layout_width="match_parent" 15 android:layout_height="match_parent" 16 android:layout_above="@+id/hearty" 17 android:background="#252525" 18 android:elevation="7dp" 19 android:fontFamily="@font/chinkala" 20 android:gravity="center" 21 android:textColor="@color/cyan" 22 android:textSize="64sp" 23 android:visibility="gone" /> 24 25 <TextView 26 android:id="@+id/textView83" 27 android:layout_width="match_parent" 28 android:layout_height="match_parent" 29 android:layout_below="@+id/hearty" 30 android:background="#252525" 31 android:elevation="7dp" 32 android:fontFamily="@font/chinkala" 33 android:gravity="center" 34 android:textColor="@color/pinkie" 35 android:textSize="64sp" 36 android:visibility="gone" /> 37 38 <ImageView 39 android:id="@+id/hearty" 40 android:layout_width="match_parent" 41 android:layout_height="wrap_content" 42 android:elevation="7dp" 43 android:scaleType="center" 44 android:src="@drawable/heart" 45 android:layout_centerInParent="true" 46 app:layout_constraintStart_toStartOf="parent" 47 app:layout_constraintTop_toTopOf="parent" /> 48 49 50 51 52 </RelativeLayout> 53