我正在开发餐厅应用程序。订单完成后,我需要在AlertView
中显示帐单(商品价格和总金额)。
是否可以从wifi打印机中的AlertView
打印出来?如何制作?
答案 0 :(得分:1)
是的,可以打印布局从布局创建位图并将意图发送到打印机应用程序,如下面的代码所示
yourRootLayout.setDrawingCacheEnabled(true);
yourRootLayout.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
yourRootLayout.buildDrawingCache();
Bitmap dummyImageBitmap = Bitmap.createBitmap(mWebView
.getDrawingCache());
ByteArrayOutputStream out = new ByteArrayOutputStream();
dummyImageBitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
byte[] photoArray = out.toByteArray();
yourRootLayout.setDrawingCacheEnabled(false);
try {
File file = new File(getFilePath());//path to sdcard
if (file.exists()) {
file.delete();
}
FileOutputStream outPut = new FileOutputStream(file);
outPut.write(photoArray);
outPut.flush();
outPut.close();
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("application/pdf");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
startActivity(intent);
} catch (Exception e) {
throw new Exception("Error generating file", e);
}
现在,这将弹出一个应用程序列表,您必须选择允许通过wifi打印的打印机应用程序