Since Android 4.4 KitKat, i have weird crashes in my applications. It seems that it has something to do with spinner. This stacktrace of bug i am receiving:
So i check that line in TextView class in makeNewLayout method and found that this exception is happening on this line final int height = mLayoutParams.height;
Layout params are probably null.. and this line is in block that handle ellipsizing long text .. so i removed that textView attribute in xml android:ellipsize="marquee"
and then problem really disappears .. strange strange