|
|
@@ -25,7 +25,7 @@ import kr.co.zumo.app.lifeplus.view.IEventListener;
|
|
|
*/
|
|
|
public class Tutorial {
|
|
|
|
|
|
- // TODO: fade in fade out애니메이션
|
|
|
+
|
|
|
private FragmentActivity activity;
|
|
|
private FrameLayout frameLayout;
|
|
|
private LayoutInflater inflater;
|
|
|
@@ -54,6 +54,10 @@ public class Tutorial {
|
|
|
case TUTORIAL_BUCKET_UPDATE:
|
|
|
showTutorialBucketUpdate(listener);
|
|
|
break;
|
|
|
+ // TODO: 버킷리스트 태그있는 화면 진입시 튜토리얼 구현 예정
|
|
|
+ case TUTORIAL_BUCKET_TAG:
|
|
|
+ showTutorialBucketTag(listener);
|
|
|
+ break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
@@ -61,9 +65,8 @@ public class Tutorial {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
private void showTutorialListicle(IEventListener listener) {
|
|
|
- Animation fadeOut = AnimationUtils.loadAnimation(activity, R.anim.fade_out);
|
|
|
+ Animation fadeOut = AnimationUtils.loadAnimation(activity, R.anim.fade_out);
|
|
|
view = inflater.inflate(R.layout.tutorial_listicle_cover, null);
|
|
|
frameLayout.addView(view);
|
|
|
view.setClickable(true);
|
|
|
@@ -167,4 +170,7 @@ public class Tutorial {
|
|
|
}, 3000);
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ private void showTutorialBucketTag(IEventListener listener) {
|
|
|
+ }
|
|
|
}
|