I'm developing an Android application and I want to print an HTML page via the Samsung Mobile Print app. What are the intent parameters that I need to do this i.e.
package name
MIME type
Action type (
ACTION_SEND
,ACTION_VIEW
e.t.c)any other parameters that are required.
Is there a way I can find out these parameters? I managed to find out the package name using adb shell but when I tried to pass the HTML page as a bundle, it throw an ActivityNotFoundException (No Activity found to handle ACTION_SEND)
.
I know there are other options for printing such as PrinterShare Pro and Gooble Cloud Print but I'm developing this application for a client and so I have to communicate with the Samsung Mobile Print app.
Thanks for your help.