android - D/TextView : setTypeface with style : 0 comes and stuck the application-LMLPHP
当我运行我的应用程序时,它被卡住了,所以我检查了Loccat,看来
具有样式的setTypeface:0错误循环。

最佳答案

这来自于
view.setTypeface(Typeface.DEFAULT,0)view.setTypeface(Typeface.DEFAULT,Typeface.NORMAL)
我相信您可以安全地将调用更改为(忽略第二个参数)view.setTypeface(Typeface.DEFAULT)( View 为TextView)

Galaxy 7 DUOS(SM-G920FD),Android 7.0

关于android - D/TextView : setTypeface with style : 0 comes and stuck the application,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48161165/

10-11 03:03