我正在使用默认的 android 打印机选项(android 版本 4.4)
我想绕过 printManager 适配器弹出窗口。如何隐藏弹出窗口并直接打印到android中的打印机
问问题
2994 次
2 回答
0
您不能扩展 PrintManager 类。这是最后一堂课。请查看以下链接
这些家伙设计了自己的打印框架。他们在哪里设计自己的对话框。看看
http://apf.isb-vietnam.com/index.php/programming-with-apf.html
于 2015-03-09T10:32:13.877 回答
-1
在我看来,答案是肯定的。
这是print()
AndroidPrintManager
类的方法:
public PrintJob print(String printJobName, PrintDocumentAdapter documentAdapter, PrintAttributes attributes)
{
if (mService == null)
{
Log.w(LOG_TAG, "Feature android.software.print not available");
return null;
}
if (!(mContext instanceof Activity))
{
throw new IllegalStateException("Can print only from an activity");
}
if (TextUtils.isEmpty(printJobName))
{
throw new IllegalArgumentException("printJobName cannot be empty");
}
if (documentAdapter == null)
{
throw new IllegalArgumentException("documentAdapter cannot be null");
}
PrintDocumentAdapterDelegate delegate = new PrintDocumentAdapterDelegate((Activity) mContext, documentAdapter);
try
{
Bundle result = mService.print(printJobName, delegate, attributes, mContext.getPackageName(), mAppId, mUserId);
if (result != null)
{
PrintJobInfo printJob = result.getParcelable(EXTRA_PRINT_JOB);
IntentSender intent = result.getParcelable(EXTRA_PRINT_DIALOG_INTENT);
if (printJob == null || intent == null)
{
return null;
}
try
{
mContext.startIntentSender(intent, null, 0, 0, 0);
return new PrintJob(printJob, this);
}
catch (SendIntentException sie)
{
Log.e(LOG_TAG, "Couldn't start print job config activity.", sie);
}
}
}
catch (RemoteException re)
{
Log.e(LOG_TAG, "Error creating a print job", re);
}
return null;
}
只需创建你自己的类(我会假装它被命名MyPrintManager
),其中的方法extends PrintManager
和方法。然后,使用上面的代码,但删除这一行:@Override
print()
mContext.startIntentSender(intent, null, 0, 0, 0);
MyPrintManager
然后,使用以下代码获取该类的实例:
MyPrintManager printManager = (MyPrintManager) appContext.getSystemService(Context.PRINT_SERVICE);
你可以试试这个,虽然我不确定它是否有效,因为我没有测试过。请回复结果,如果不起作用,我会尽力帮助您。
于 2015-03-07T08:56:25.650 回答