Weird NullPointerException in Spinner

后端 未结 3 1642
长发绾君心
长发绾君心 2020-12-18 20:07

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:

         


        
3条回答
  •  执念已碎
    2020-12-18 20:57

    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

提交回复
热议问题