How to create a specific image as wallpaper in Sketchware

The code used:

WallpaperManager
myWallpaperManager =
WallpaperManager.getInstance(getApplicationContext());
try{
myWallpaperManager.setResource(R.drawable.wall);
}catch (Exception g) {
g.printStackTrace();
}

Comments

Popular posts from this blog

How to Create Material Ripple Effect in Sketchware

How to Create Custom Notifications with Listeners

How to create Custom Dialog in Sketchware