I have problem with setting text between animations (fade out text then change it and fade in) using NineOldAndroids library. I have tried to set it like this:
ObjectAnimator.ofFloat(TextView, "alpha", 1, 0.5f, 0).setDuration(3000).start();
TextView.setText("Text");
ObjectAnimator.ofFloat(TextView, "alpha", 0, 0.5f, 1).setDuration(3000).start();
But it seems to change text and animate only second part (fade out). I have tried to use .setStartDelay(ms) and AnimatorSetBuilder, but no effects.