I'm trying to fade my image alpha from 1 to 0 by 2000ms but it seems like it goes rather quickly like half a second. Here's my code:
ImageView tom = (ImageView) findViewById(R.id.imgJerry);
tom.animate().alpha(0f).setDuration(2000);
I'm following a lesson from Udemy and they got it work fine.