Is it poosible to program a screensaver for a android (not lock screen)?
I am looking for a tutorial on programming a screen saver. The screen saver will activate as the user does nothing more. If the user touches the screen, the screensaver will disappear. Is this possible?
You can receive
ACTION_SCREEN_OFFin your App with aBroadcastReceiver.In theonReceivemethod of this BroadcastReceiver, start an activity as thescreensaver.And you can register a listener fortouch eventsand when this event occured,finish your App.