feat(splash): 스플래시 페이지 수정

This commit is contained in:
2025-09-11 22:16:00 +09:00
parent cdc59d0877
commit b70c8058e8
6 changed files with 30 additions and 20 deletions

View File

@@ -30,7 +30,8 @@ class SplashActivity : BaseActivity<ActivitySplashBinding>(ActivitySplashBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setLayoutParams(binding.llText, start = 0, end = 0, top = 615, bottom = 0)
setLayoutParams(binding.tvText1, start = 0, end = 0, top = 580, bottom = 0)
setLayoutParams(binding.tvText2, start = 0, end = 0, top = 0, bottom = 100)
setupRemoteConfig()
fetchAndroidLatestVersion()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -15,28 +15,37 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:id="@+id/ll_text"
<TextView
android:id="@+id/tv_text_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:fontFamily="@font/pretendard_bold"
android:text="목소리로 만나는 새로운 세계"
android:textSize="21sp"
app:layout_constraintEnd_toEndOf="parent"
android:textColor="@color/white"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_text_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/splash_text_logo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
app:layout_constraintTop_toBottomOf="@+id/tv_text_1" />
<ImageView
android:id="@+id/iv_text"
<TextView
android:id="@+id/tv_text_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/splash_text1" />
<ImageView
android:id="@+id/iv_text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:contentDescription="@null"
android:src="@drawable/splash_text2" />
</LinearLayout>
android:fontFamily="@font/pretendard_bold"
android:text="소다라이브"
android:textColor="@color/white"
android:textSize="21sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>