Java Code Examples for android.print.PrintAttributes#Builder
The following examples show how to use
android.print.PrintAttributes#Builder .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProWebView.java From prowebview with Apache License 2.0 | 7 votes |
/** * Print the current web site */ @RequiresApi(19) public void printWebView(@Nullable PrintListener listener) { PrintManager printManager = (PrintManager) getContext().getSystemService(Context.PRINT_SERVICE); PrintDocumentAdapter printAdapter = createPrintDocumentAdapter(); PrintAttributes.Builder builder = new PrintAttributes.Builder(); builder.setMediaSize(PrintAttributes.MediaSize.NA_LETTER); if (printManager != null) { PrintJob printJob = printManager.print(getTitle(), printAdapter, builder.build()); if (listener!=null) { if(printJob.isCompleted()){ listener.onSuccess(); } else { listener.onFailed(); } } } else { if (listener != null) { listener.onFailed(); } } }
Example 2
Source File: MainActivity.java From Android-SmartWebView with MIT License | 5 votes |
private void print_page(WebView view, String print_name, boolean manual) { PrintManager printManager = (PrintManager) getSystemService(Context.PRINT_SERVICE); PrintDocumentAdapter printAdapter = view.createPrintDocumentAdapter(print_name); PrintAttributes.Builder builder = new PrintAttributes.Builder(); builder.setMediaSize(PrintAttributes.MediaSize.ISO_A5); PrintJob printJob = printManager.print(print_name, printAdapter, builder.build()); if(printJob.isCompleted()){ Toast.makeText(getApplicationContext(), R.string.print_complete, Toast.LENGTH_LONG).show(); } else if(printJob.isFailed()){ Toast.makeText(getApplicationContext(), R.string.print_failed, Toast.LENGTH_LONG).show(); } }
Example 3
Source File: ShareUtil.java From memetastic with GNU General Public License v3.0 | 5 votes |
/** * Print a {@link WebView}'s contents, also allows to create a PDF * * @param webview WebView * @param jobName Name of the job (affects PDF name too) * @return {{@link PrintJob}} or null */ @RequiresApi(api = Build.VERSION_CODES.KITKAT) public PrintJob print(final WebView webview, final String jobName, final boolean... landscape) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { final PrintDocumentAdapter printAdapter; final PrintManager printManager = (PrintManager) _context.getSystemService(Context.PRINT_SERVICE); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { printAdapter = webview.createPrintDocumentAdapter(jobName); } else { printAdapter = webview.createPrintDocumentAdapter(); } final PrintAttributes.Builder attrib = new PrintAttributes.Builder(); if (landscape != null && landscape.length > 0 && landscape[0]) { attrib.setMediaSize(new PrintAttributes.MediaSize("ISO_A4", "android", 11690, 8270)); attrib.setMinMargins(new PrintAttributes.Margins(0, 0, 0, 0)); } if (printManager != null) { try { return printManager.print(jobName, printAdapter, attrib.build()); } catch (Exception ignored) { } } } else { Log.e(getClass().getName(), "ERROR: Method called on too low Android API version"); } return null; }
Example 4
Source File: ShareUtil.java From openlauncher with Apache License 2.0 | 4 votes |
/** * Print a {@link WebView}'s contents, also allows to create a PDF * * @param webview WebView * @param jobName Name of the job (affects PDF name too) * @return {{@link PrintJob}} or null */ @RequiresApi(api = Build.VERSION_CODES.KITKAT) public PrintJob print(final WebView webview, final String jobName, final boolean... landscape) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { final PrintDocumentAdapter printAdapter; final PrintManager printManager = (PrintManager) _context.getSystemService(Context.PRINT_SERVICE); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { printAdapter = webview.createPrintDocumentAdapter(jobName); } else { printAdapter = webview.createPrintDocumentAdapter(); } final PrintAttributes.Builder attrib = new PrintAttributes.Builder(); if (landscape != null && landscape.length > 0 && landscape[0]) { attrib.setMediaSize(new PrintAttributes.MediaSize("ISO_A4", "android", 11690, 8270)); attrib.setMinMargins(new PrintAttributes.Margins(0, 0, 0, 0)); } if (printManager != null) { try { return printManager.print(jobName, printAdapter, attrib.build()); } catch (Exception ignored) { } } } else { Log.e(getClass().getName(), "ERROR: Method called on too low Android API version"); } return null; }