mirror of
https://github.com/Nezumi-2711/Foodify.git
synced 2026-09-22 20:00:50 +00:00
21 lines
923 B
XML
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> |