java.lang.Object | |
↳ | com.facebook.imagepipeline.core.ImagePipelineExperiments.Builder |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
public int | mBitmapCloseableRefType | ||||||||||
public boolean | mBitmapPrepareToDrawForPrefetch | ||||||||||
public boolean | mDownsampleIfLargeBitmap | ||||||||||
public boolean | mDownscaleFrameToDrawableDimensions | ||||||||||
public boolean | mEncodedCacheEnabled | ||||||||||
public boolean | mEnsureTranscoderLibraryLoaded | ||||||||||
public boolean | mExperimentalThreadHandoffQueueEnabled | ||||||||||
public boolean | mGingerbreadDecoderEnabled | ||||||||||
public Supplier<Boolean> | mLazyDataSource | ||||||||||
public long | mMemoryType | ||||||||||
public Supplier<Boolean> | mSuppressBitmapPrefetchingSupplier |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Builder(ImagePipelineConfig.Builder configBuilder) |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
If enabled, the pipeline will call prepareToDraw()
after
decoding. This potentially reduces lag on Android N+ as this step now happens async when the
RendererThread is idle.
useBitmapPrepareToDraw | set true for enabling prepareToDraw |
---|---|
minBitmapSizeBytes | Bitmaps with a getByteCount() smaller than this
value are not uploaded |
maxBitmapSizeBytes | Bitmaps with a getByteCount() larger than this value
are not uploaded |
preparePrefetch | If this is true, also pre-fetching image requests will trigger the
prepareToDraw() call. |
If true we cancel decoding jobs when the related request has been cancelled
decodeCancellationEnabled | If true the decoding of cancelled requests are cancelled |
---|
Stores an alternative lazy method to instantiate the data souce.
Sets the maximum bitmap size use to compute the downsampling value when decoding Jpeg images.
If true, the pipeline will use alternative implementations without native code.
nativeCodeDisabled | set true for disabling native implementation. |
---|
Enables the caching of partial image data, for example if the request is cancelled or fails after some data has been received.
Stores an alternative method to instantiate the ProducerFactory
. This allows
experimenting with overridden producers.