мой код похож на
fun setToWallPaper(context: Context) {
Код: Выделить всё
val intent = Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER).apply {
putExtra(
WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
ComponentName(context, Mp4WallpaperService::class.java)
)
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
context.startActivity(intent)
try {
WallpaperManager.getInstance(context).clear()
} catch (e: IOException) {
e.printStackTrace()
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... ock-screen