- <?xml version="1.0" encoding="utf-8"?>
- <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"
- tools:context=".views.title.TitleActivity">
-
- <ImageView
- android:id="@+id/imageView2"
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:scaleType="fitXY"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/background"
- tools:ignore="ContentDescription" />
-
- <ImageView
- android:id="@+id/carlos"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignParentTop="false"
- android:layout_centerHorizontal="false"
- android:scaleType="centerInside"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/title"
- tools:ignore="ContentDescription" />
-
- <ImageView
- android:id="@+id/gifImage"
- android:layout_width="88dp"
- android:layout_height="74dp"
- android:layout_marginStart="16dp"
- android:layout_marginTop="16dp"
- android:visibility="invisible"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/load"
- tools:ignore="ContentDescription" />
-
- <View
- android:id="@+id/view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.0"
- app:layout_constraintStart_toStartOf="@+id/imageView2"
- app:layout_constraintTop_toBottomOf="@+id/gifImage" />
-
- </androidx.constraintlayout.widget.ConstraintLayout>