perf: 달력 월이동 애니메이션 속도 개선

- 애니메이션 지속시간: 280ms → 150ms로 단축

- 더 빠른 월 이동 경험 제공

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-03-13 06:48:58 +09:00
parent e62f21c86a
commit e190ac76b5

View File

@@ -746,7 +746,7 @@ class MainActivity : AppCompatActivity() {
.alpha(1f)
.scaleX(1f)
.scaleY(1f)
.setDuration(280)
.setDuration(150)
.setInterpolator(AccelerateDecelerateInterpolator())
.start()
}