Hacker News new | ask | show | jobs
by Monory 2614 days ago
Fully-closing apps requires them to re-initialize them from scratch after each re-open, which is cpu-heavy (thus also battery-heavy) and slow.

A frequent usage pattern, also, is quickly switching between several apps. There's no definite “close” on mobiles apart from force-quits, which are unhappy for all apps, too.

1 comments

> Fully-closing apps requires them to re-initialize them from scratch after each re-open, which is cpu-heavy (thus also battery-heavy) and slow.

Thanks for the explanation, I didn't know starting from scratch was so expensive. I had always wondered (and fumed) about that but it makes more sense now.