如何让 android 将应用程序识别为墙纸应用程序
How to make android recognise app as wallpaper app
我创建了一个墙纸应用程序,一切正常,只是它不会显示在其他应用程序的 "apply wallpapers from" 选项列表中。有什么可以让 android 将应用程序识别为墙纸应用程序。
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
将此添加到您的清单文件中
我创建了一个墙纸应用程序,一切正常,只是它不会显示在其他应用程序的 "apply wallpapers from" 选项列表中。有什么可以让 android 将应用程序识别为墙纸应用程序。
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
将此添加到您的清单文件中