BitmapFactory.Options.RequestCancelDecode Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This member is deprecated.
[Android.Runtime.Register("requestCancelDecode", "()V", "GetRequestCancelDecodeHandler")]
public virtual void RequestCancelDecode ();
[<Android.Runtime.Register("requestCancelDecode", "()V", "GetRequestCancelDecodeHandler")>]
abstract member RequestCancelDecode : unit -> unit
override this.RequestCancelDecode : unit -> unit
- Attributes
Remarks
This member is deprecated. As of android.os.Build.VERSION_CODES#N
, this will not affect the decode, though it will still set mCancel.
In android.os.Build.VERSION_CODES#M
and below, if this can be called from another thread while this options object is inside a decode... call. Calling this will notify the decoder that it should cancel its operation. This is not guaranteed to cancel the decode, but if it does, the decoder... operation will return null, or if inJustDecodeBounds is true, will set outWidth/outHeight to -1
Java documentation for android.graphics.BitmapFactory.Options.requestCancelDecode()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.