gpt4 book ai didi

android - 使 Activity 出现在 'wallpaper chooser'

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:17:58 25 4
gpt4 key购买 nike

我希望我的 Activity 出现在您尝试从主屏幕选择壁纸时看到的 Activity 列表(图库、动态壁纸等)中。

我假设这是有意为之的,但似乎找不到可行的方法。我能找到的最接近的是:

<action android:name="android.intent.action.ACTION_SET_WALLPAPER>

但这不起作用,似乎用于其他用途。

最佳答案

这应该是您想要的 Intent 过滤器:

<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

定义在这里:http://developer.android.com/reference/android/content/Intent.html#ACTION_SET_WALLPAPER

(DEFAULT 类别是 Intent 的标准语法。)

关于android - 使 Activity 出现在 'wallpaper chooser',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3792766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com