Created
May 30, 2015 14:40
-
-
Save hitesh-dhamshaniya/b8ed50dee2e1be0a9ab7 to your computer and use it in GitHub Desktop.
Android Live Wallpaper Direct show
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (android.os.Build.VERSION.SDK_INT > 15) | |
{ | |
bundle.setAction("android.service.wallpaper.CHANGE_LIVE_WALLPAPER"); | |
bundle.putExtra("android.service.wallpaper.extra.LIVE_WALLPAPER_COMPONENT", new ComponentName(com/loard/ganesha/MyService.getPackage().getName(), com/loard/ganesha/MyService.getCanonicalName())); | |
} else | |
{ | |
bundle.setAction("android.service.wallpaper.LIVE_WALLPAPER_CHOOSER"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's work for me