-
26Feb
Android – Load drawables by name from resources
Sometimes you need to load some images knowing only their names – this is how to do it
-
01Feb
Android – Threads Tutorial – Part 2
Today we’ll focus on Threads creation and analyze an example of a local Thread instantiated in a method.
First of all I want to make sure that we understand why and how we deal with Threads. We use Threads objects to start parallel execution lines. For this we need to “load” the Thread object with the behavior we want, meaning to provide a run() method for it, which contains that behavior.
-
30Jan
Android – Threads Tutorial
Today we are going to talk about Threads in Android. I assume we all know what Threads are, what they do and where we can use them. Also I assume we know the basic Android applications, what Activities are and how we’re usually dealing with them. If not, take a little time to get used to them on the official development site.