summaryrefslogtreecommitdiff
path: root/samples/ApiDemos/src/com/example/android/apis/app/PrintCustomContent.java
blob: 7a7e7ed803cc9a834dc2d3166709c088831179fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.example.android.apis.app;

import android.app.ListActivity;
import android.content.Context;
import android.content.res.Configuration;
import android.graphics.pdf.PdfDocument.Page;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.CancellationSignal;
import android.os.CancellationSignal.OnCancelListener;
import android.os.ParcelFileDescriptor;
import android.print.PageRange;
import android.print.PrintAttributes;
import android.print.PrintDocumentAdapter;
import android.print.PrintDocumentInfo;
import android.print.PrintManager;
import android.print.pdf.PrintedPdfDocument;
import android.util.SparseIntArray;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.MeasureSpec;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.example.android.apis.R;

import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * This class demonstrates how to implement custom printing support.
 * <p>
 * This activity shows the list of the MotoGP champions by year and
 * brand. The print option in the overflow menu allows the user to
 * print the content. The list list of items is laid out to such that
 * it fits the options selected by the user from the UI such as page
 * size. Hence, for different page sizes the printed content will have
 * different page count.
 * </p>
 * <p>
 * This sample demonstrates how to completely implement a {@link
 * PrintDocumentAdapter} in which:
 * <ul>
 * <li>Layout based on the selected print options is performed.</li>
 * <li>Layout work is performed only if print options change would change the content.</li>
 * <li>Layout result is properly reported.</li>
 * <li>Only requested pages are written.</li>
 * <li>Write result is properly reported.</li>
 * <li>Both Layout and write respond to cancellation.</li>
 * <li>Layout and render of views is demonstrated.</li>
 * </ul>
 * </p>
 *
 * @see PrintManager
 * @see PrintDocumentAdapter
 */
public class PrintCustomContent extends ListActivity {

    private static final int MILS_IN_INCH = 1000;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setListAdapter(new MotoGpStatAdapter(loadMotoGpStats(),
                getLayoutInflater()));
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        getMenuInflater().inflate(R.menu.print_custom_content, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        if (item.getItemId() == R.id.menu_print) {
            print();
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    private void print() {
        PrintManager printManager = (PrintManager) getSystemService(
                Context.PRINT_SERVICE);

        printManager.print("MotoGP stats",
            new PrintDocumentAdapter() {
                private int mRenderPageWidth;
                private int mRenderPageHeight;

                private PrintAttributes mPrintAttributes;
                private PrintDocumentInfo mDocumentInfo;
                private Context mPrintContext;

                @Override
                public void onLayout(final PrintAttributes oldAttributes,
                        final PrintAttributes newAttributes,
                        final CancellationSignal cancellationSignal,
                        final LayoutResultCallback callback,
                        final Bundle metadata) {

                    // If we are already cancelled, don't do any work.
                    if (cancellationSignal.isCanceled()) {
                        callback.onLayoutCancelled();
                        return;
                    }

                    // Now we determined if the print attributes changed in a way that
                    // would change the layout and if so we will do a layout pass.
                    boolean layoutNeeded = false;

                    final int density = Math.max(newAttributes.getResolution().getHorizontalDpi(),
                            newAttributes.getResolution().getVerticalDpi());

                    // Note that we are using the PrintedPdfDocument class which creates
                    // a PDF generating canvas whose size is in points (1/72") not screen
                    // pixels. Hence, this canvas is pretty small compared to the screen.
                    // The recommended way is to layout the content in the desired size,
                    // in this case as large as the printer can do, and set a translation
                    // to the PDF canvas to shrink in. Note that PDF is a vector format
                    // and you will not lose data during the transformation.

                    // The content width is equal to the page width minus the margins times
                    // the horizontal printer density. This way we get the maximal number
                    // of pixels the printer can put horizontally.
                    final int marginLeft = (int) (density * (float) newAttributes.getMinMargins()
                            .getLeftMils() / MILS_IN_INCH);
                    final int marginRight = (int) (density * (float) newAttributes.getMinMargins()
                            .getRightMils() / MILS_IN_INCH);
                    final int contentWidth = (int) (density * (float) newAttributes.getMediaSize()
                            .getWidthMils() / MILS_IN_INCH) - marginLeft - marginRight;
                    if (mRenderPageWidth != contentWidth) {
                        mRenderPageWidth = contentWidth;
                        layoutNeeded = true;
                    }

                    // The content height is equal to the page height minus the margins times
                    // the vertical printer resolution. This way we get the maximal number
                    // of pixels the printer can put vertically.
                    final int marginTop = (int) (density * (float) newAttributes.getMinMargins()
                            .getTopMils() / MILS_IN_INCH);
                    final int marginBottom = (int) (density * (float) newAttributes.getMinMargins()
                            .getBottomMils() / MILS_IN_INCH);
                    final int contentHeight = (int) (density * (float) newAttributes.getMediaSize()
                            .getHeightMils() / MILS_IN_INCH) - marginTop - marginBottom;
                    if (mRenderPageHeight != contentHeight) {
                        mRenderPageHeight = contentHeight;
                        layoutNeeded = true;
                    }

                    // Create a context for resources at printer density. We will
                    // be inflating views to render them and would like them to use
                    // resources for a density the printer supports.
                    if (mPrintContext == null || mPrintContext.getResources()
                            .getConfiguration().densityDpi != density) {
                        Configuration configuration = new Configuration();
                        configuration.densityDpi = density;
                        mPrintContext = createConfigurationContext(
                                configuration);
                        mPrintContext.setTheme(android.R.style.Theme_Holo_Light);
                    }

                    // If no layout is needed that we did a layout at least once and
                    // the document info is not null, also the second argument is false
                    // to notify the system that the content did not change. This is
                    // important as if the system has some pages and the content didn't
                    // change the system will ask, the application to write them again.
                    if (!layoutNeeded) {
                        callback.onLayoutFinished(mDocumentInfo, false);
                        return;
                    }

                    // For demonstration purposes we will do the layout off the main
                    // thread but for small content sizes like this one it is OK to do
                    // that on the main thread.

                    // Store the data as we will layout off the main thread.
                    final List<MotoGpStatItem> items = ((MotoGpStatAdapter)
                                    getListAdapter()).cloneItems();

                    new AsyncTask<Void, Void, PrintDocumentInfo>() {
                        @Override
                        protected void onPreExecute() {
                            // First register for cancellation requests.
                            cancellationSignal.setOnCancelListener(new OnCancelListener() {
                                @Override
                                public void onCancel() {
                                    cancel(true);
                                }
                            });
                            // Stash the attributes as we will need them for rendering.
                            mPrintAttributes = newAttributes;
                        }

                        @Override
                        protected PrintDocumentInfo doInBackground(Void... params) {
                            try {
                                // Create an adapter with the stats and an inflater
                                // to load resources for the printer density.
                                MotoGpStatAdapter adapter = new MotoGpStatAdapter(items,
                                        (LayoutInflater) mPrintContext.getSystemService(
                                                Context.LAYOUT_INFLATER_SERVICE));

                                int currentPage = 0;
                                int pageContentHeight = 0;
                                int viewType = -1;
                                View view = null;
                                LinearLayout dummyParent = new LinearLayout(mPrintContext);
                                dummyParent.setOrientation(LinearLayout.VERTICAL);

                                final int itemCount = adapter.getCount();
                                for (int i = 0; i < itemCount; i++) {
                                    // Be nice and respond to cancellation.
                                    if (isCancelled()) {
                                        return null;
                                    }

                                    // Get the next view.
                                    final int nextViewType = adapter.getItemViewType(i);
                                    if (viewType == nextViewType) {
                                        view = adapter.getView(i, view, dummyParent); 
                                    } else {
                                        view = adapter.getView(i, null, dummyParent);
                                    }
                                    viewType = nextViewType;

                                    // Measure the next view
                                    measureView(view);

                                    // Add the height but if the view crosses the page
                                    // boundary we will put it to the next page.
                                    pageContentHeight += view.getMeasuredHeight();
                                    if (pageContentHeight > mRenderPageHeight) {
                                        pageContentHeight = view.getMeasuredHeight();
                                        currentPage++;
                                    }
                                }

                                // Create a document info describing the result.
                                PrintDocumentInfo info = new PrintDocumentInfo
                                        .Builder("MotoGP_stats.pdf")
                                    .setContentType(PrintDocumentInfo.CONTENT_TYPE_DOCUMENT)
                                    .setPageCount(currentPage + 1)
                                    .build();

                                // We completed the layout as a result of print attributes
                                // change. Hence, if we are here the content changed for
                                // sure which is why we pass true as the second argument.
                                callback.onLayoutFinished(info, true);
                                return info;
                            } catch (Exception e) {
                                // An unexpected error, report that we failed and
                                // one may pass in a human readable localized text
                                // for what the error is if known.
                                callback.onLayoutFailed(null);
                                throw new RuntimeException(e);
                            }
                        }

                        @Override
                        protected void onPostExecute(PrintDocumentInfo result) {
                            // Update the cached info to send it over if the next
                            // layout pass does not result in a content change.
                            mDocumentInfo = result;
                        }

                        @Override
                        protected void onCancelled(PrintDocumentInfo result) {
                            // Task was cancelled, report that.
                            callback.onLayoutCancelled();
                        }
                    }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null);
                }

                @Override
                public void onWrite(final PageRange[] pages,
                        final ParcelFileDescriptor destination,
                        final CancellationSignal cancellationSignal,
                        final WriteResultCallback callback) {

                    // If we are already cancelled, don't do any work.
                    if (cancellationSignal.isCanceled()) {
                        callback.onWriteCancelled();
                        return;
                    }

                    // Store the data as we will layout off the main thread.
                    final List<MotoGpStatItem> items = ((MotoGpStatAdapter)
                                    getListAdapter()).cloneItems();

                    new AsyncTask<Void, Void, Void>() {
                        private final SparseIntArray mWrittenPages = new SparseIntArray();
                        private final PrintedPdfDocument mPdfDocument = new PrintedPdfDocument(
                                PrintCustomContent.this, mPrintAttributes);

                        @Override
                        protected void onPreExecute() {
                            // First register for cancellation requests.
                            cancellationSignal.setOnCancelListener(new OnCancelListener() {
                                @Override
                                public void onCancel() {
                                    cancel(true);
                                }
                            });
                        }

                        @Override
                        protected Void doInBackground(Void... params) {
                            // Go over all the pages and write only the requested ones.
                            // Create an adapter with the stats and an inflater
                            // to load resources for the printer density.
                            MotoGpStatAdapter adapter = new MotoGpStatAdapter(items,
                                    (LayoutInflater) mPrintContext.getSystemService(
                                            Context.LAYOUT_INFLATER_SERVICE));

                            int currentPage = -1;
                            int pageContentHeight = 0;
                            int viewType = -1;
                            View view = null;
                            Page page = null;
                            LinearLayout dummyParent = new LinearLayout(mPrintContext);
                            dummyParent.setOrientation(LinearLayout.VERTICAL);

                            // The content is laid out and rendered in screen pixels with
                            // the width and height of the paper size times the print
                            // density but the PDF canvas size is in points which are 1/72",
                            // so we will scale down the content.
                            final float scale =  Math.min(
                                    (float) mPdfDocument.getPageContentRect().width()
                                            / mRenderPageWidth,
                                    (float) mPdfDocument.getPageContentRect().height()
                                            / mRenderPageHeight);

                            final int itemCount = adapter.getCount();
                            for (int i = 0; i < itemCount; i++) {
                                // Be nice and respond to cancellation.
                                if (isCancelled()) {
                                    return null;
                                }

                                // Get the next view.
                                final int nextViewType = adapter.getItemViewType(i);
                                if (viewType == nextViewType) {
                                    view = adapter.getView(i, view, dummyParent);
                                } else {
                                    view = adapter.getView(i, null, dummyParent);
                                }
                                viewType = nextViewType;

                                // Measure the next view
                                measureView(view);

                                // Add the height but if the view crosses the page
                                // boundary we will put it to the next one.
                                pageContentHeight += view.getMeasuredHeight();
                                if (currentPage < 0 || pageContentHeight > mRenderPageHeight) {
                                    pageContentHeight = view.getMeasuredHeight();
                                    currentPage++;
                                    // Done with the current page - finish it.
                                    if (page != null) {
                                        mPdfDocument.finishPage(page);
                                    }
                                    // If the page is requested, render it.
                                    if (containsPage(pages, currentPage)) {
                                        page = mPdfDocument.startPage(currentPage);
                                        page.getCanvas().scale(scale, scale);
                                        // Keep track which pages are written.
                                        mWrittenPages.append(mWrittenPages.size(), currentPage);
                                    } else {
                                        page = null;
                                    }
                                }

                                // If the current view is on a requested page, render it.
                                if (page != null) {
                                    // Layout an render the content.
                                    view.layout(0, 0, view.getMeasuredWidth(),
                                            view.getMeasuredHeight());
                                    view.draw(page.getCanvas());
                                    // Move the canvas for the next view.
                                    page.getCanvas().translate(0, view.getHeight());
                                }
                            }

                            // Done with the last page.
                            if (page != null) {
                                mPdfDocument.finishPage(page);
                            }

                            // Write the data and return success or failure.
                            try {
                                mPdfDocument.writeTo(new FileOutputStream(
                                        destination.getFileDescriptor()));
                                // Compute which page ranges were written based on
                                // the bookkeeping we maintained.
                                PageRange[] pageRanges = computeWrittenPageRanges(mWrittenPages);
                                callback.onWriteFinished(pageRanges);
                            } catch (IOException ioe) {
                                callback.onWriteFailed(null);
                            } finally {
                                mPdfDocument.close();
                            }

                            return null;
                        }

                        @Override
                        protected void onCancelled(Void result) {
                            // Task was cancelled, report that.
                            callback.onWriteCancelled();
                            mPdfDocument.close();
                        }
                    }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null);
                }

                private void measureView(View view) {
                    final int widthMeasureSpec = ViewGroup.getChildMeasureSpec(
                            MeasureSpec.makeMeasureSpec(mRenderPageWidth,
                            MeasureSpec.EXACTLY), 0, view.getLayoutParams().width);
                    final int heightMeasureSpec = ViewGroup.getChildMeasureSpec(
                            MeasureSpec.makeMeasureSpec(mRenderPageHeight,
                            MeasureSpec.EXACTLY), 0, view.getLayoutParams().height);
                    view.measure(widthMeasureSpec, heightMeasureSpec);
                }

                private PageRange[] computeWrittenPageRanges(SparseIntArray writtenPages) {
                    List<PageRange> pageRanges = new ArrayList<PageRange>();

                    int start = -1;
                    int end = -1;
                    final int writtenPageCount = writtenPages.size();
                    for (int i = 0; i < writtenPageCount; i++) {
                        if (start < 0) {
                            start = writtenPages.valueAt(i);
                        }
                        int oldEnd = end = start;
                        while (i < writtenPageCount && (end - oldEnd) <= 1) {
                            oldEnd = end;
                            end = writtenPages.valueAt(i);
                            i++;
                        }
                        PageRange pageRange = new PageRange(start, end);
                        pageRanges.add(pageRange);
                        start = end = -1;
                    }

                    PageRange[] pageRangesArray = new PageRange[pageRanges.size()];
                    pageRanges.toArray(pageRangesArray);
                    return pageRangesArray;
                }

                private boolean containsPage(PageRange[] pageRanges, int page) {
                    final int pageRangeCount = pageRanges.length;
                    for (int i = 0; i < pageRangeCount; i++) {
                        if (pageRanges[i].getStart() <= page
                                && pageRanges[i].getEnd() >= page) {
                            return true;
                        }
                    }
                    return false;
                }
        }, null);
    }

    private List<MotoGpStatItem> loadMotoGpStats() {
        String[] years = getResources().getStringArray(R.array.motogp_years);
        String[] champions = getResources().getStringArray(R.array.motogp_champions);
        String[] constructors = getResources().getStringArray(R.array.motogp_constructors);

        List<MotoGpStatItem> items = new ArrayList<MotoGpStatItem>();

        final int itemCount = years.length;
        for (int i = 0; i < itemCount; i++) {
            MotoGpStatItem item = new MotoGpStatItem();
            item.year = years[i];
            item.champion = champions[i];
            item.constructor = constructors[i];
            items.add(item);
        }

        return items;
    }

    private static final class MotoGpStatItem {
        String year;
        String champion;
        String constructor;
    }

    private class MotoGpStatAdapter extends BaseAdapter {
        private final List<MotoGpStatItem> mItems;
        private final LayoutInflater mInflater;

        public MotoGpStatAdapter(List<MotoGpStatItem> items, LayoutInflater inflater) {
            mItems = items;
            mInflater = inflater;
        }

        public List<MotoGpStatItem> cloneItems() {
            return new ArrayList<MotoGpStatItem>(mItems);
        }

        @Override
        public int getCount() {
            return mItems.size();
        }

        @Override
        public Object getItem(int position) {
            return mItems.get(position);
        }

        @Override
        public long getItemId(int position) {
            return position;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            if (convertView == null) {
                convertView = mInflater.inflate(R.layout.motogp_stat_item, parent, false);
            }

            MotoGpStatItem item = (MotoGpStatItem) getItem(position);

            TextView yearView = (TextView) convertView.findViewById(R.id.year);
            yearView.setText(item.year);

            TextView championView = (TextView) convertView.findViewById(R.id.champion);
            championView.setText(item.champion);

            TextView constructorView = (TextView) convertView.findViewById(R.id.constructor);
            constructorView.setText(item.constructor);

            return convertView;
        }
    }
}