WallpaperManager.PeekFastDrawable 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.
Overloads
PeekFastDrawable() |
<strong> Important note: </strong> only apps with
|
PeekFastDrawable(WallpaperManagerFlags) |
<strong> Important note: </strong> only apps with
|
PeekFastDrawable()
<strong> Important note: </strong> only apps with
android.Manifest.permission#MANAGE_EXTERNAL_STORAGE
should use this method.
[Android.Runtime.Register("peekFastDrawable", "()Landroid/graphics/drawable/Drawable;", "GetPeekFastDrawableHandler")]
public virtual Android.Graphics.Drawables.Drawable? PeekFastDrawable ();
[<Android.Runtime.Register("peekFastDrawable", "()Landroid/graphics/drawable/Drawable;", "GetPeekFastDrawableHandler")>]
abstract member PeekFastDrawable : unit -> Android.Graphics.Drawables.Drawable
override this.PeekFastDrawable : unit -> Android.Graphics.Drawables.Drawable
Returns
An optimized Drawable object for the requested wallpaper.
- Attributes
Remarks
<strong> Important note: </strong> only apps with android.Manifest.permission#MANAGE_EXTERNAL_STORAGE
should use this method. Otherwise, a SecurityException
will be thrown.
Equivalent to #getFastDrawable()
.
Java documentation for android.app.WallpaperManager.peekFastDrawable()
.
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.
Applies to
PeekFastDrawable(WallpaperManagerFlags)
<strong> Important note: </strong> only apps with
android.Manifest.permission#MANAGE_EXTERNAL_STORAGE
should use this method.
[Android.Runtime.Register("peekFastDrawable", "(I)Landroid/graphics/drawable/Drawable;", "GetPeekFastDrawable_IHandler", ApiSince=34)]
public virtual Android.Graphics.Drawables.Drawable? PeekFastDrawable (Android.App.WallpaperManagerFlags which);
[<Android.Runtime.Register("peekFastDrawable", "(I)Landroid/graphics/drawable/Drawable;", "GetPeekFastDrawable_IHandler", ApiSince=34)>]
abstract member PeekFastDrawable : Android.App.WallpaperManagerFlags -> Android.Graphics.Drawables.Drawable
override this.PeekFastDrawable : Android.App.WallpaperManagerFlags -> Android.Graphics.Drawables.Drawable
Parameters
- which
- WallpaperManagerFlags
The FLAG_*
identifier of a valid wallpaper type. Throws
IllegalArgumentException if an invalid wallpaper is requested.
Returns
An optimized Drawable object for the requested wallpaper.
- Attributes
Remarks
<strong> Important note: </strong> only apps with android.Manifest.permission#MANAGE_EXTERNAL_STORAGE
should use this method. Otherwise, a SecurityException
will be thrown.
Equivalent to #getFastDrawable(int)
.
Java documentation for android.app.WallpaperManager.peekFastDrawable(int)
.
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.