diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-11-02 23:36:21 +0100 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-11-02 23:36:21 +0100 |
commit | a8c1194dd3ec6683548d8e8fe0bb24c4b8974454 (patch) | |
tree | 25e2965f8efd4ce24a6c4b75730414df1d26c99d /Client/BrzoDoLokacije/app/src/main/res/layout | |
parent | 00cf63fbf357e0068834487f622ba7faade51992 (diff) |
Dodata splash page.
Diffstat (limited to 'Client/BrzoDoLokacije/app/src/main/res/layout')
-rw-r--r-- | Client/BrzoDoLokacije/app/src/main/res/layout/activity_splash_page.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/activity_splash_page.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/activity_splash_page.xml index 240bfbb..7035b22 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/activity_splash_page.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/activity_splash_page.xml @@ -4,6 +4,57 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="#FFFFFF" + android:backgroundTint="#388DAC" tools:context=".Activities.SplashPage"> + <ImageView + android:id="@+id/imageView6" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.0" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.0" + app:srcCompat="@drawable/gradient" /> + + <ImageView + android:id="@+id/imageView7" + android:layout_width="0dp" + android:layout_height="326dp" + android:layout_marginTop="70dp" + app:layout_constraintBottom_toTopOf="@+id/textView" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="1.0" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="1.0" + app:srcCompat="@mipmap/ic_launcher_foreground" /> + + <TextView + android:id="@+id/textView" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="BRZO DO LOKACIJE" + android:textColor="#FFE4E2C9" + android:textSize="25dp" + app:layout_constraintBottom_toTopOf="@+id/textView3" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.613" /> + + <TextView + android:id="@+id/textView3" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="16dp" + android:text="by ODYSSEY" + android:textColor="#FFE4E2C9" + android:textSize="20dp" + app:layout_constraintBottom_toBottomOf="@+id/imageView6" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |