스플래시 06월

This commit is contained in:
klaus 2024-05-28 16:23:28 +09:00
parent d0eb4103ba
commit 8505be882c
8 changed files with 35 additions and 11 deletions

View File

@ -40,8 +40,8 @@ android {
applicationId "kr.co.vividnext.sodalive" applicationId "kr.co.vividnext.sodalive"
minSdk 23 minSdk 23
targetSdk 33 targetSdk 33
versionCode 78 versionCode 79
versionName "1.12.1" versionName "1.12.2"
} }
buildTypes { buildTypes {

View File

@ -6,6 +6,7 @@ import android.net.Uri
import android.os.Bundle import android.os.Bundle
import android.os.Handler import android.os.Handler
import android.os.Looper import android.os.Looper
import android.widget.ImageView
import androidx.constraintlayout.widget.ConstraintLayout import androidx.constraintlayout.widget.ConstraintLayout
import androidx.core.os.bundleOf import androidx.core.os.bundleOf
import com.google.firebase.dynamiclinks.PendingDynamicLinkData import com.google.firebase.dynamiclinks.PendingDynamicLinkData
@ -33,18 +34,41 @@ class SplashActivity : BaseActivity<ActivitySplashBinding>(ActivitySplashBinding
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
val lp = binding.ivText.layoutParams as ConstraintLayout.LayoutParams setLayoutParams(binding.ivText, start = 0, end = 0, top = 390, bottom = 0)
lp.topMargin = screenHeight * 302 / 2337 setLayoutParams(binding.ivTextLogo, start = 0, end = 0, top = 0, bottom = 150)
binding.ivText.layoutParams = lp
val lp2 = binding.ivText2.layoutParams as ConstraintLayout.LayoutParams
lp2.bottomMargin = screenHeight * 195 / 2337
binding.ivText2.layoutParams = lp2
setupRemoteConfig() setupRemoteConfig()
fetchAndroidLatestVersion() fetchAndroidLatestVersion()
} }
private fun setLayoutParams(
imageView: ImageView,
start: Int = 0,
end: Int = 0,
top: Int = 0,
bottom: Int = 0
) {
val lp = imageView.layoutParams as ConstraintLayout.LayoutParams
if (top > 0) {
lp.topMargin = screenHeight * top / 2337
}
if (bottom > 0) {
lp.bottomMargin = screenHeight * bottom / 2337
}
if (start > 0) {
lp.leftMargin = screenWidth * start / 1080
}
if (end > 0) {
lp.rightMargin = screenWidth * end / 1080
}
imageView.layoutParams = lp
}
private fun setupRemoteConfig() { private fun setupRemoteConfig() {
val configSettings = remoteConfigSettings { val configSettings = remoteConfigSettings {
minimumFetchIntervalInSeconds = 300 minimumFetchIntervalInSeconds = 300

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -27,11 +27,11 @@
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
<ImageView <ImageView
android:id="@+id/iv_text2" android:id="@+id/iv_text_logo"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:contentDescription="@null" android:contentDescription="@null"
android:src="@drawable/splash_text_2" android:src="@drawable/splash_logo"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" /> app:layout_constraintStart_toStartOf="parent" />