Xamarin - Wallpaper error: no non-static method "Landroid/app...."

245 Views Asked by At

I want to get and set wallpaper image but it gives to me error in Android 6.0 API 23 but it is working great in Android 9. I also tried Application.Context and this keyword instead of ApplicationContext

My exception;

Exception image

My codes;

WallpaperManager manager = WallpaperManager.GetInstance(ApplicationContext);
            try
            {
                var image = manager.GetWallpaperFile(WallpaperManagerFlags.System);
                Android.Graphics.Bitmap bitmap = Android.Graphics.BitmapFactory.DecodeFileDescriptor(image.FileDescriptor);
                byte[] bitmapData;
                using (var stream = new MemoryStream())
                {
                    bitmap.Compress(Android.Graphics.Bitmap.CompressFormat.Png, 0, stream);
                    bitmapData = stream.ToArray();
                }
            }
            catch (Exception ex)
            {
                Toast.MakeText(this, "DUVAR KAĞIDI " + ex.Message, ToastLength.Long).Show();
            }
0

There are 0 best solutions below