I fell confused about the relationship between the Activity, Action and Intent?
And also an another question about the Implicit intents
: for example I want to start this action ACTION_CALL
to make a phone call,obviously, this is an Implicit intent, so I should write like this Intent intent = new Intent();
intent.setAction(Intent.ACTION_CALL);
But I should also need to set the data. Here is my question : How can I know what's the uri looks like? What's the schema?Please just don't tell the simple answer.How do you know that? Is there any API I should look for? And I know in the manifest <data android:scheme="xxxxx"/>
So where is the manifest about the action or activity Intent.ACTION_CALL
? I can't find it.