How could i set wallpaper when the images are stored in arraylist i have tried but no hope!!
here is the code:
final ImageView image = new ImageView(mContext);
image.setImageResource(mImageIds[pos]);
try {
wallpaperManager.setBitmap(image.getDrawingCache());
} catch (IOException e) {
e.printStackTrace();
}
I tried using above code but it showing NullPointer Exception
.