Files
Foodify/app/src/main/res/layout/activity_splash_screen.xml
T
2023-02-10 16:17:35 +07:00

21 lines
923 B
XML

<?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=".Activity.SplashScreenActivity">
<ImageView
android:layout_width="287dp"
android:layout_height="287dp"
android:background="@drawable/logo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.44"
android:contentDescription="Logo App"
tools:ignore="HardcodedText" />
</androidx.constraintlayout.widget.ConstraintLayout>