Home | History | Annotate | Download | only in view

Lines Matching refs:quality

810      * <p>Enables low quality mode for the drawing cache.</p>
815 * <p>Enables high quality mode for the drawing cache.</p>
820 * <p>Enables automatic quality mode for the drawing cache.</p>
830 * quality property.</p>
2898 * Returns the quality of the drawing cache.
2914 * Set the drawing cache quality of this view. This value is used only when the
2917 * @param quality One of {@link #DRAWING_CACHE_QUALITY_AUTO},
2926 public void setDrawingCacheQuality(int quality) {
2927 setFlags(quality, DRAWING_CACHE_QUALITY_MASK);
6551 Bitmap.Config quality;
6555 quality = Bitmap.Config.ARGB_8888;
6558 quality = Bitmap.Config.ARGB_4444;
6561 quality = Bitmap.Config.ARGB_8888;
6564 quality = Bitmap.Config.ARGB_8888;
6570 quality = use32BitCache ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
6577 bitmap = Bitmap.createBitmap(width, height, quality);
6658 Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) {
6667 Bitmap bitmap = Bitmap.createBitmap(width > 0 ? width : 1, height > 0 ? height : 1, quality);