Hacker News new | ask | show | jobs
by VMG 5086 days ago
> Look at Android or Windows Phone - all the user-level apps are written in garbage-collected language and they work just fine.

Aren't there people blaming Android's perceived laggyness on this?

1 comments

Many do, but actually the problem is caused by UI using software rendering instead of the GPU. This was only changed in Android 3.0.

Another thing is that many developers do too much in the UI thread instead of doing it in the background or asynchronously.