0

我正在制作一个壁纸应用程序,我想将我的应用程序添加到默认应用程序列表中,所以当用户想要更改他的背景时,我的应用程序将作为选项出现。有人可以帮我吗

在此处输入图像描述

4

1 回答 1

2

采用:

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

更多信息在这里:

action.SET_WALLPAPER

希望这可以帮助你。

于 2016-02-16T10:30:25.417 回答