I noticed several printer applications in the Android Market (HP, Epson, Canon, Kodak, Brother, Samsung, Lexmark, etc.) allowing the user to print LANs. But I could not find any general intention to use them.
Intent.ACTION_VIEW
opens all applications that can view photos / doc, including many applications to increase productivity.
The HP iPrint app seems to have a unique intent line, but it doesn't work for any other print app. A.
Intent printIntent = new Intent("org.androidprinting.intent.action.SEND")
;
Any hint or workaround for invoking only print-related applications when creating an intent?
source share