fix(splash): 스플래시 화면 구성을 단순화한다

This commit is contained in:
2026-07-11 23:55:27 +09:00
parent 273feef017
commit d1510b8ba3
3 changed files with 7 additions and 64 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 MiB

+5 -30
View File
@@ -1,23 +1,11 @@
<?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">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:contentDescription="@null"
android:scaleType="centerCrop"
android:src="@drawable/splash_bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
android:layout_height="match_parent"
android:background="@color/black">
<LinearLayout
android:id="@+id/ll_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
@@ -25,32 +13,19 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="UseCompoundDrawables">
app:layout_constraintTop_toTopOf="parent">
<TextView
style="@style/Typography.Heading3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/bold"
android:text="@string/screen_splash_tagline"
android:textColor="@color/white"
android:textSize="23sp" />
android:textColor="@color/white" />
<ImageView
android:id="@+id/iv_text_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:contentDescription="@null"
android:src="@drawable/splash_text_logo" />
<TextView
android:id="@+id/tv_company_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="52dp"
android:fontFamily="@font/bold"
android:text="@string/screen_splash_brand_name"
android:textColor="@color/white"
android:textSize="21sp" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>