I am confused by the 'f'.
ObjectAnimator moveUp = ObjectAnimator.ofFloat(ivLogo, "translationY", 0f, -150f);
    moveUp.setDuration(1000);
    moveUp.setStartDelay(500);
    moveUp.start();
What's the meaning of 'f'?And what's the meaning of form 'of' to '-150f'?