android – 让活动出现在’壁纸选择器’中

前端之家收集整理的这篇文章主要介绍了android – 让活动出现在’壁纸选择器’中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望我的活动出现在您尝试从主屏幕选择壁纸时看到的活动列表(画廊,动态壁纸等)中.

我假设这是用意图完成但似乎无法找到一个有效.我能找到的最接近的是:

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

但这不起作用,似乎用于别的东西.

解决方法

这应该是您想要的intent-filter:
<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类别是意图的标准语法.)

原文链接:https://www.f2er.com/android/317293.html

猜你在找的Android相关文章