I want to know that Is It possible in Android to set an Image as screenSaver.. I am not sure about the feasibily of screen saver…That is when the phone is Idle, then Instead of showing the black blank screen, my application check the Idle time using OnUserInteraction() method and set an Image as screen saver…?? Please let me know If anybody know about this..
I want to know that Is It possible in Android to set an Image
Share
onUserInteraction() is deprecated for a start, and it only listens for events on your Activity.
Secondly, having such a screensaver would require that you use WakeLocks, which consume extra battery. And for a screensaver type app, the battery usage would be extremely high.
You might want to look into Daydreams now, assuming you’re fine with Android 4.2 and above only.