标签: android printing
我正在使用PrintManager和PrintDocumentAdapter在我的应用程序中打印。我跟着这个例子:
https://android.googlesource.com/platform/development/+/master/samples/ApiDemos/src/com/example/android/apis/app/PrintCustomContent.java
我需要将页面呈现为位图,这有效,但速度很慢。我希望以低分辨率渲染它们以进行预览,并为实际打印提供高分辨率。我无法看到如何做到这一点。事实上,PrintDocumentAdapter.onWrite()似乎只被调用一次。
感谢
答案 0 :(得分:0)
您可以创建图像文件并将其传送到操作系统,而不是打印自定义内容,而不是像here那样进行打印吗?