截至今天,Google官方的Cloud Print文档仍然告诉您将PrintDialogActivity包含在您的应用中,以便使用Google Cloud Print打印文档。但是,现在也可以使用官方Google云打印应用进行打印。我找不到任何相关的文档。
答案 0 :(得分:3)
答案非常简单,但我花了几天时间才想出来:
Intent printIntent = new Intent(Intent.ACTION_SEND);
printIntent.setType("text/html");
printIntent.putExtra(Intent.EXTRA_TITLE, "some cool title for your document");
printIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(printIntent);
这是正确的方法。 重要提示: Intent.ACTION_SEND_MULTIPLE
目前无效。