I have been using flex for couple of years but I am new to android. I know about activities, receivers and services.
I need some help related to navigation in android doc.
How can I find out in documentation about the intents being fired related to a particular class and what are the details of that particular intent.
Let me clarify my question by giving you an example.
I wanted to know how can I receive a new sms. I knew that I have to listen for some intent in a broadcast receiver and some permissions have to be added in manifest file. I went to the docs and looked for some intent in android.telephony.SmsManager
but I was unable to find it.
So by searching on the net I found that "android.provider.Telephony.SMS_RECEIVED" is the intent which I will receive in broadcast receiver.
How can I find the detail about this particular event in android docs?
What this intent contains, who fires this? What is contained in the bundle?
I think intents are similar to events in flex. Is this understanding correct?