Is it possible to make use of Android multicore CPU? I'm thinking about something like C# Parallel.ForEach() (example here) but if there is another approach to this, I'd also like to learn it.
My calculations can be easily divided into independent pieces. I know I can simply fire multiple Threads or AsyncTasks, but without knowing CPU abilities (1/2/4 cores - can I get such info?) it may not be as effective.