Tell me, how can I listen to the change in live wallpaper in android? what I tried: I made a receiver in android that listens for the action of changing the wallpaper.
<receiver
android:name=".Wallpaper_Change"
android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.WALLPAPER_CHANGED"/>
</intent-filter>
</receiver>
It is called only when setting a static image as wallpaper, but it does not cause the setting of live wallpaper.
source
share