Skip to content

Commit 74fa5cd

Browse files
authored
feat: 긴급 서버 점검 스플래쉬 이미지 교체 및 스플래쉬 지연 시간 3.5초로 늘림 (#277)
1 parent 733ce13 commit 74fa5cd

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

app/src/main/java/com/eatssu/android/presentation/login/IntroActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class IntroActivity : AppCompatActivity() {
4646
}
4747
}
4848

49-
}, 2000) // 시간 2초 이후 실행
49+
}, 3500) // 시간 2초 이후 실행 TODO 긴급 공지는 3.5초로 늘림
5050

5151
}
5252
}
Loading

app/src/main/res/layout/activity_intro.xml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,28 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7-
android:background="@color/primary"
7+
android:background="@color/secondary"
88
tools:context=".presentation.login.IntroActivity">
99

10+
<!-- <ImageView-->
11+
<!-- android:layout_width="250dp"-->
12+
<!-- android:layout_height="wrap_content"-->
13+
<!-- android:scaleType="centerInside"-->
14+
<!-- android:layout_margin="65dp"-->
15+
<!-- android:src="@drawable/img_new_logo_white"-->
16+
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
17+
<!-- app:layout_constraintEnd_toEndOf="parent"-->
18+
<!-- app:layout_constraintStart_toStartOf="parent"-->
19+
<!-- app:layout_constraintTop_toTopOf="parent" />-->
20+
1021
<ImageView
11-
android:layout_width="250dp"
12-
android:layout_height="wrap_content"
13-
android:scaleType="centerInside"
14-
android:layout_margin="65dp"
15-
android:src="@drawable/img_new_logo_white"
16-
app:layout_constraintBottom_toBottomOf="parent"
22+
android:layout_width="match_parent"
23+
android:layout_height="match_parent"
24+
android:scaleType="fitCenter"
25+
android:paddingHorizontal="46dp"
26+
android:src="@drawable/img_splash_server_fix_contents"
1727
app:layout_constraintEnd_toEndOf="parent"
1828
app:layout_constraintStart_toStartOf="parent"
1929
app:layout_constraintTop_toTopOf="parent" />
2030

21-
<!-- <ImageView-->
22-
<!-- android:layout_width="wrap_content"-->
23-
<!-- android:layout_height="wrap_content"-->
24-
<!-- android:src="@drawable/img_backgroud_snow"-->
25-
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
26-
<!-- app:layout_constraintEnd_toEndOf="parent"-->
27-
<!-- app:layout_constraintStart_toStartOf="parent"-->
28-
<!-- app:layout_constraintTop_toTopOf="parent" />-->
29-
3031
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)