I am working in android and i am creating an app for Google TV. I am new and have no local help so i am really asking too many questions.
I want to keep track of the time in which my application is free and user does not interacts with it.
For example if user has not interacted with our application for 2 minutes, we would show him some ad etc. which will be hidden when he starts interaction or upon some "Close" button.
Its kind of screen savor.
Your help is greatly appreciated.
Use the onTouch listener in your layouts for the views that require user interactions.
At the starting of the app, start the timer, if user touches some thing cancel it and restart it again.
This way you can count the time for which user has not responded to the app.