I'm trying to create my activity's view on top of the current system wallpaper by setting
<activity android:theme="@android:style/Theme.Wallpaper.NoTitleBar">
or
<activity android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar">
in the Android manifest file.
However, when I'm on Android desktop and have a live wallpaper, if I swipe right or left to another desktop, the wallpaper changes (to look like it's displayed from the right of from the left). [NB: this effect is called "parallax scrolling."]
I don't get this behavior in my application, although other touch events (taps, etc.) are sent to the live wallpaper.
How can I get the default Android behavior in my application?