其他分享
首页 > 其他分享> > Android:如何直接在Samsung Mobile Print上打印HTML页面

Android:如何直接在Samsung Mobile Print上打印HTML页面

作者:互联网

我正在开发Android应用程序,我想通过Samsung Mobile Print应用程序打印HTML页面.我需要做什么意图参数,即

>包名
> MIME类型
>动作类型(ACTION_SEND,ACTION_VIEW e.t.c)
>任何其他所需的参数.

有没有办法找出这些参数?我设法使用adb shell找出包名称但是当我尝试将HTML页面作为包传递时,它会抛出一个ActivityNotFoundException(找不到处理ACTION_SEND的活动).

我知道还有其他打印选项,如PrinterShare Pro和Gooble Cloud Print,但我正在为客户开发此应用程序,因此我必须与Samsung Mobile Print应用程序进行通信.

谢谢你的帮助.

解决方法:

我联系了三星移动打印应用程序的开发人员,他们提供了以下代码:

Intent intent = new Intent("com.sec.print.mobileprint.action.PRINT");
Uri uri = Uri.parse("http://www.samsung.com");
intent.putExtra("com.sec.print.mobileprint.extra.CONTENT", uri );
intent.putExtra("com.sec.print.mobileprint.extra.CONTENT_TYPE", "WEBPAGE");
intent.putExtra("com.sec.print.mobileprint.extra.OPTION_TYPE", "DOCUMENT_PRINT");
intent.putExtra("com.sec.print.mobileprint.extra.JOB_NAME", "Untitled");
startActivity(intent);

标签:android,printing,android-intent,samsung-mobile
来源: https://codeday.me/bug/20190728/1565225.html