Android Question About Threading

kuosda

Active Member
Licensed User
Longtime User
Hello Erel
So far, threading can only be used in "Release" and not in "Debug"?
Because most of the code was still used in UI Thread because it is easy to debug.
Is there more examples of ExceptionEx in Threading?
 
Last edited:

Diceman

Active Member
Licensed User
Hello Erel
So far, threading can only be used in "Release" and not in "Debug"?
Because most of the code was still used in UI Thread because it is easy to debug.
Is there more examples of ExceptionEx in Threading?

You might want to read about "wait for" which is very useful when waiting for (Internet) operations to complete and return a value. It eliminates the need for threading and still gives you a responsive app.
 
Upvote 0
Top