我可以使用以下代码在 android 中以编程方式打开动态壁纸选择器:
Intent intent = new Intent();
intent.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
startActivity(intent);
但是如果我想在预览模式下打开动态壁纸应用程序怎么办?哪里会有一个按钮来把它设置为动态壁纸?有什么办法吗?
我可以使用以下代码在 android 中以编程方式打开动态壁纸选择器:
Intent intent = new Intent();
intent.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
startActivity(intent);
但是如果我想在预览模式下打开动态壁纸应用程序怎么办?哪里会有一个按钮来把它设置为动态壁纸?有什么办法吗?