Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenGLRenderer, found invalid glyph

I am trying on an android application which have a listview in it. In this listview, just images are listed.

I wonder, although application works perfectly, when i click on an item in listview sometimes an error log appears : "found invalid glyph". (I'm using Eclipse ADT Bundle.)

Do anyone have an idea about it ?

Regards.

like image 395
alicanbatur Avatar asked Nov 12 '22 07:11

alicanbatur


1 Answers

That error log most likely comes from hwui/FontRenderer.cpp (see here).

Good news is that it probably shouldn't be logged as an error, but a warning instead. It simply means the character wasn't cached when it was supposed to be rendered. If it were a bigger problem, you would see a "still found invalid glyph" error after.

like image 124
Dave Avatar answered Nov 14 '22 22:11

Dave