And I wonder if is possible to open an specific action I mean for example open a new mail in the gmail application, or new message on whatsapp stuff like that.
I'm trying to lunch application's specific actions within my application, so it interacts with a couple of more applications.
if is possible how to achieve that.
so far I do can lunch the application with the package name.
or get the package list from getInstalledPackages but I cant find that there be published the application actions.
is that dependent on the application ?
as well I know that I can do something like:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
to prompt the user for a selection (if not default) for that action. but I cant find related information to lunch the app skiping the users input.
I hope this be possible at least for the most popular applications.