我希望我的活动出现在您尝试从主屏幕选择壁纸时看到的活动列表(画廊,动态壁纸等)中.
我假设这是用意图完成但似乎无法找到一个有效.我能找到的最接近的是:
<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类别是意图的标准语法.)