스플래시 - UI 적용

This commit is contained in:
klaus 2023-07-24 05:50:46 +09:00
parent d562e9199c
commit 41c6228af5
7 changed files with 51 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:type="linear"
android:startColor="@color/color_a0e2ff"
android:endColor="@color/color_ecfaff"
android:angle="90" />
</shape>

View File

@ -2,15 +2,49 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@drawable/gradient_splash">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="스플래시"
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="11dp"
android:contentDescription="@null"
android:src="@drawable/splash_bubble"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="111dp"
android:contentDescription="@null"
android:src="@drawable/splash_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="77.3dp"
android:contentDescription="@null"
android:src="@drawable/splash_logo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/iv_text" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="36dp"
android:contentDescription="@null"
android:src="@drawable/vividnext_logo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -12,4 +12,6 @@
<color name="color_3e3358">#3E3358</color>
<color name="color_b3909090">#B3909090</color>
<color name="color_a0e2ff">#A0E2FF</color>
<color name="color_ecfaff">#ECFAFF</color>
</resources>