caribou
caribou

Reputation: 13

font is unreadable after opening app several times

I have a problem and sorry for my second post about this. After I opened my app several times the font is unreadable and looks like this: (screenshot I don't know whats going on. It's the default font of android. Who can help me? Or does anyone knows the problem?

Upvotes: 1

Views: 563

Answers (2)

Lovis
Lovis

Reputation: 10057

Try to disable Hardware Acceleration as pointed out here: https://stackoverflow.com/a/17068447/1096567

You can do it like this: http://developer.android.com/guide/topics/graphics/hardware-accel.html

Upvotes: 1

Xareyo
Xareyo

Reputation: 1377

Try adding anti-aliasing to the font to smoothen it out, this can be added either to the element, such as:

p {
    -webkit-font-smoothing: antialiased;
}

or to the document if your prefer, my preference:

html {
    -webkit-font-smoothing: antialiased;
}

Hope this helps.

Upvotes: 0

Related Questions