|
|
@@ -5,7 +5,6 @@ package kr.co.zumo.app.lifeplus.view.screen.main;
|
|
|
|
|
|
import android.animation.Animator;
|
|
|
import android.animation.ObjectAnimator;
|
|
|
-import android.util.Log;
|
|
|
import android.view.View;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
@@ -31,13 +30,12 @@ import kr.co.zumo.app.lifeplus.view.screen.introduction.guide.SimpleAnimatorList
|
|
|
|
|
|
class TextFading {
|
|
|
|
|
|
- Disposable disposable;
|
|
|
- Disposable disposableAnim;
|
|
|
- ObjectAnimator animator;
|
|
|
- List<Integer> stringIds;
|
|
|
- TextView textView;
|
|
|
- View target;
|
|
|
- int duration = 500;
|
|
|
+ private Disposable disposable;
|
|
|
+ private ObjectAnimator animator;
|
|
|
+ private List<Integer> stringIds;
|
|
|
+ private TextView textView;
|
|
|
+ private View target;
|
|
|
+ private int duration = 500;
|
|
|
|
|
|
public TextFading(View target, TextView textView, List<Integer> stringIds, int duration) {
|
|
|
this.target = target;
|
|
|
@@ -63,7 +61,6 @@ class TextFading {
|
|
|
}
|
|
|
|
|
|
public void playFading() {
|
|
|
- Log.i("APP# TextFading | playFading", "|" + "----------------------------------------------------------------------------");
|
|
|
stopToggleIntervalInternal();
|
|
|
|
|
|
if (stringIds.indexOf(R.string.empty_string) > -1) {
|