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

时间:2013-10-20 07:09:18

标签: android android-intent printing samsung-mobile

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

  • 包名

  • MIME类型

  • 行动类型(ACTION_SENDACTION_VIEW e.t.c)

  • 所需的任何其他参数。

有没有办法找出这些参数?我设法使用adb shell找出包名,但是当我尝试将HTML页面作为包传递时,它会抛出ActivityNotFoundException (No Activity found to handle ACTION_SEND)

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

感谢您的帮助。

1 个答案:

答案 0 :(得分:7)

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

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);