rayman
rayman

Reputation: 21596

Handler vs Thread

I would like to know, once for all. I've read in many places. When I want do some 'long time operations' I should use a Handler.

But I don't get why? All my 'long-time-operations' I surround with a regular threads, and it works fine.

Why would I use Handler for this?

The only time I had to use Handler was, when I had to schedule some task(postDelayed)

Is there any main idea I miss about handlers(When I should really use it)? Or maybe there isn't really difference?

Upvotes: 11

Views: 4777

Answers (2)

Melinda Green
Melinda Green

Reputation: 2130

It can't just be about getting you back to the UI thread since runOnUiThread(Runnable) does that very nicely. I suspect this is more about making it easier for Android to manage threads and other resources that shouldn't live outside of an Activity's context, and that the "Activity has leaked..." exceptions tell you when that's happened.

Upvotes: 1

JRL
JRL

Reputation: 77995

A Handler lets you communicate back with the UI thread from your background thread. This is because UI operations are forbidden from within background threads. Note that starting at version 1.5, the AsyncTask class makes it much easier to do so.

Upvotes: 16

Related Questions