I am developing a wallpaper application in Android and i am finding a right way to set scrollable wallpaper for my app. Now, my code can set wallpaper from bitmap but it was cropped to fit with one page and just stayed only on one page (i have 5 pages in home screen). That means the content in each page can scroll through the wallpaper but the wallpaper was not scroll.
I want to set a scrollable wallpaper. I tried some codes from internet but they did not help. Do you guys have any idea?
This is my code
WallpaperManager wm = WallpaperManager.getInstance(mActivity.getContext());
try {
wm.setBitmap(mCropImageView.getCroppedImage());
} catch (IOException e) {
e.printStackTrace();
}