从活动中打开当前的动态壁纸设置

发布于 2024-12-23 09:49:59 字数 115 浏览 2 评论 0原文

我正在制作 Android 动态壁纸。到目前为止,一切工作正常,但我需要能够从活动中打开壁纸设置(已经在壁纸预览中工作)。

是否有意图或任何东西可以让用户进入当前壁纸的预览屏幕,或者直接打开设置活动?

I'm working on an Android live wallpaper. I have everything working just fine so far, but I need to be able to open the wallpaper settings (that already work in the wallpaper preview) from an activity.

Is there an intent or anything that will put the user on the preview screen for the current wallpaper, or just open the settings activity directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待我真够勒 2024-12-30 09:49:59

我认为您无法直接进入预览,但您可以进入动态壁纸选择器:

startActivity(new Intent(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER));

否则,只需直接启动设置活动即可。

编辑:刚刚发现这个但没有尝试(它是 3.0 以上):

startActivity(new Intent(WallpaperManager.WALLPAPER_PREVIEW_META_DATA));

I don't think you can get to the preview directly, but you can get to the live wallpaper chooser:

startActivity(new Intent(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER));

Otherwise, just start your settings activity directly.

Edit: Just found this but didn't try (It's 3.0 an up):

startActivity(new Intent(WallpaperManager.WALLPAPER_PREVIEW_META_DATA));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文