我想从我的 android 应用程序打印到我在 Google 云打印中注册的打印机。但是每次我尝试打印网页时,总是会出现文档丢失错误。这是我的代码,但我不知道是哪一行导致了错误。
public void print() {
Uri docUri = Uri.parse("http://myserver.com/view/myusername");
String docMimeType = "text/html";
String docTitle = "myTestPage";
Intent printIntent = new Intent(myContext, PrintDialogActivity.class);
printIntent.setDataAndType(docUri, docMimeType);
printIntent.putExtra("title", docTitle);
startActivity(printIntent);
}
所以基本上,http ://myserver.com/demo/view/myusername是我要打印的网页,而 text/html 是我提供的 mime 类型。有人可以告诉我是哪一部分导致了错误,因为我尝试了笔记本电脑浏览器中的 URL 并加载了网页。非常感谢你。:D