1

私はレストランアプリケーションを開発しています。注文完了後、請求書(商品代金と合計金額)を に表示する必要がありますAlertView

AlertViewそれをwifiプリンターで印刷することはできますか?作り方は?

4

1 に答える 1

1

はい、次のコードのように、レイアウトを印刷してレイアウトからビットマップを作成し、インテントをプリンター アプリに送信することができます。

    yourRootLayout.setDrawingCacheEnabled(true);
    yourRootLayout.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
    yourRootLayout.buildDrawingCache();

    Bitmap dummyImageBitmap = Bitmap.createBitmap(yourRootLayout
            .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);
    }

アプリのリストが表示されるので、Wi-Fi 経由で印刷できるプリンター アプリを選択する必要があります。

于 2016-02-05T08:08:49.293 に答える