I'm trying to create a simple Android Launcher.
I'm also using a live wallpaper (Kustom LWP) that I can tap certain areas of to perform actions.
I'm able to see the wallpaper using these style properties:
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowShowWallpaper">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
But if I try to tap an item on my wallpaper, the touch doesn't pass through.
I've tried android:clickable="false
and android:focusable="false"
, and setting all of my views to have a setOnTouchListener
that returns false, but none of these fix the issue.
How would I go about doing this?