Can someone please explain to me the basic function of Intents in the Android OS?

Posted by K-RAN on Stack Overflow See other posts from Stack Overflow or by K-RAN
Published on 2010-05-28T01:15:07Z Indexed on 2010/05/28 1:21 UTC
Read the original article Hit count: 237

Filed under:
|
|
|
|

I'm new to programming applications for the Android OS. As far as general architecture of the OS goes, I understand that processes are implemented as Linux processes and that each one is sandboxed.

However, I'm utterly confused on the IPCs and syscalls (if any) used. I know that the IBinder is a form of this; parcels are sent back and forth between processes and Bundles are array forms of parcels (?). But even that is still unfamiliar to me. Same with Intents. All in all, I don't understand what kinds of IPCs are implemented and how.

Could someone briefly explain to me the specific methods used by user level applications in Android OS to communicate with each other and the OS? I've done kernel programming and played with various IPCs in Linux (Ubuntu and Debian) so it would help immensely if this was all explained in relation to what I'm familiar with...

Thanks in advance!

© Stack Overflow or respective owner

Related posts about android

Related posts about android-sdk