gpt4 book ai didi

android - Google 云打印应用的打印 Intent

转载 作者:太空狗 更新时间:2023-10-29 12:46:54 28 4
gpt4 key购买 nike

截至今天,Google 的官方云打印文档仍然告诉您将 PrintDialogActivity 包含到您的应用程序中以使用 Google 云打印打印文档。但是,现在也可以使用官方的 Google Cloud Print 应用程序进行打印。不过,我找不到任何相关文档。

最佳答案

答案很简单,但我还是花了几天时间才弄明白:

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 目前不起作用。

关于android - Google 云打印应用的打印 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17383588/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com