Many logs with the message "setTypeface with style: 0"

1

I am making a app in android studio , and after passing some activities the screen goes black and the last record of log cat is this message. I've already looked at the other questions about this but none solved my problem. What can it be?

    
asked by anonymous 14.10.2018 / 20:29

1 answer

0

This happens when you make a call to the method view.setTypeface(Typeface.DEFAULT,0) or view.setTypeface(Typeface.DEFAULT,Typeface.NORMAL)

Switch to: view.setTypeface(Typeface.DEFAULT) (view being a TextView)

    
15.10.2018 / 21:01