Another wallpaper question, i was setting it using wallpaper manager but i found the wallpaper doesnt scroll, tried different launchers but same thing is happening, after alot of research i found its an android version issue and nobody has answered my other question so i found one answer that gets the screen dimensions and the bitmaps dimensions on android hive then scales the bitmap accordingly.
bitmapWidth = (bitmapWidth * screenHeight) / bitmapHeight;
THIS WORKS! the image is scrolling but the image is overstrectched so im using this method and playing with screen height and width and bitmap height and width to try and get this to sit nicely what i want is the image to be scaled perfectly on any device and to scroll properly any suggestions?