I am trying to implement a snackbar and a floating action button to move together. On my Nexus 6P emulator it works perfectly but when I use my actual Moto X (2014) device the snackbar has no animation (it just appears there) and the fab moves up but never comes down. Does anyone know what could be going wrong on just certain devices? (and yes I have animations on in developer settings)
This is what the snackbar code looks like.
Snackbar snackbar = Snackbar
.make(fab, "Removed " + positions.size() + " Task(s)", Snackbar.LENGTH_LONG);
snackbar.show();