我试图在miui 10.2 Redmi设备的锁定屏幕上设置墙纸。

我可以使用以下代码设置主屏幕墙纸:

 wallpaperManager.setBitmap(crackedBitmap);


但是当我尝试使用此代码设置锁屏墙纸时,它不起作用:

WallpaperManager wallpaperManager;
wallpaperManager = WallpaperManager.getInstance(getApplicationContext());
wallpaperManager.setBitmap(bitmap,null,true,WallpaperManager.FLAG_LOCK);


Toast正在打印设置了墙纸但未在锁定屏幕中显示的消息

最佳答案

MIUI不允许,请检查thisthisthis

到目前为止,您似乎尚无办法。

关于java - 在MIUI 10.2 Redmi设备上的锁定屏幕上未设置墙纸,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58128181/

10-13 03:26