diff options
| author | Svetoslav <svetoslavganov@google.com> | 2014-03-13 17:31:03 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-13 17:31:03 +0000 |
| commit | fc1d04714e9042a1b01c7a725fafa1820b8c14fb (patch) | |
| tree | b1d40b28841530b592dec21c4218088d444910df /core/java | |
| parent | 16858164c73f0696d12161e97bad9cb22c55e603 (diff) | |
| parent | 11b7d9fa6685e742f5b3e3235a8e6e4920dbed02 (diff) | |
am 11b7d9fa: Merge "PrintSpooler crash if printer is reported to have only one color mode." into klp-dev
* commit '11b7d9fa6685e742f5b3e3235a8e6e4920dbed02':
PrintSpooler crash if printer is reported to have only one color mode.
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/print/PrinterCapabilitiesInfo.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/print/PrinterCapabilitiesInfo.java b/core/java/android/print/PrinterCapabilitiesInfo.java index b615600d33ae..806a89d8481f 100644 --- a/core/java/android/print/PrinterCapabilitiesInfo.java +++ b/core/java/android/print/PrinterCapabilitiesInfo.java @@ -475,6 +475,12 @@ public final class PrinterCapabilitiesInfo implements Parcelable { * @param colorModes The color mode bit mask. * @param defaultColorMode The default color mode. * @return This builder. + * <p> + * <strong>Note:</strong> On platform version 19 (Kitkat) specifying + * only PrintAttributes#COLOR_MODE_MONOCHROME leads to a print spooler + * crash. Hence, you should declare either both color modes or + * PrintAttributes#COLOR_MODE_COLOR. + * </p> * * @throws IllegalArgumentException If color modes contains an invalid * mode bit or if the default color mode is invalid. |
