浏览代码

[메인][Common] 메인 최초 구동시 타이틀이 그림에 가려졌다가 나오는 현상 수정

Hasemi 7 年之前
父节点
当前提交
0f711b1d7d

+ 2 - 2
app/src/main/java/kr/co/zumo/app/lifeplus/view/screen/main/MainContentsCategoryHolder.java

@@ -81,11 +81,11 @@ public class MainContentsCategoryHolder extends MainContentsHolder {
 
     // 첫 번째 카테고리만 에니메이션 적용
     if (this.index == 1 && AnimatorManager.getInstance().isCompleted() == false) {
-      textView.setTranslationY(100f);
+      textView.setTranslationY(150f);
 
       ObjectAnimator textViewAnimator = ObjectAnimator.ofFloat(textView, "translationY", 0f);
       textViewAnimator.setStartDelay(1100);
-      textViewAnimator.setDuration(500);
+      textViewAnimator.setDuration(700);
       textViewAnimator.addListener(new AnimatorManager.SimpleListener());
 
       AnimatorManager.getInstance().add(textViewAnimator);