I am getting this weird error when I try to run my app on a pre API 21 device:
I/Choreographer: Skipped 39 frames! The application may be doing too much work o
I also got same issue with spinner,it is running in some devices and not running in some devices. Because I put setAdapter(null)
. Because of that it is behaving like this. Instead of that put ArrayList arrayList = new ArrayList();
spinner.setAdapter(new ArrayAdapter
then it will be work in all devices.