Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

User start MyAPP and logs in. Selects Session Timeout to be 5 mins. Does some operations on the app.......(all in foreground) Now User bring Myapp to background and starts some other app ----> Count down timer starts and logs out user after 5 mins OR user turns the screen OFF ----> Count down timer starts and logs out user after 5 mins

My Question:

I want this same behavior even when the app is in the foreground but user doesn't interact with the app for a long-time say 6-7 mins... Assume the screen is ON all the time... I want to detect kind of USER INACTIVITY (No interaction with app even though the app is in the foreground) and kick start my count down timer.

Thanks in advance.

share|improve this question
Could you always have that timer running and reset it whenever the user does something? – Kyle P Nov 17 '10 at 21:24

5 Answers

I don't know a way of tracking inactivity but there is a way to track user activity. You can catch a callback called onUserInteraction() in your activities that is called every time the user does any interaction with the application. I'd suggest doing something like this:

@Override
public void onUserInteraction(){
    MyTimerClass.getInstance().resetTimer();
}

If your app contains several activities, why not put this method in an abstract super class (extending Activity) and then have all you activities extending it.

share|improve this answer
Yeah this is one way of doing it... but my app has 30 different activities and there would be too much interaction when the user is active... so every time resetting the timer wud be a costly operation... which at the worst case can 50 to 60 times in a minute. – AKh Nov 17 '10 at 23:37
1  
I haven't timed it but I'd say resetting a timer like this lastInteraction = System.currentTimeMillis(); would take, say, 2 ms. Do it 60 times a minute and you "loose" 120ms. Out of 60000. – Fredrik Wallenius Nov 17 '10 at 23:39
Fredrik... I am using your suggestion as well to meet this scenario.. Screen timeout is set to the max 30 min on the device. MyApp shd timeout after 15 mins...If user doesnt touch anything on the screen from more more than 1 min then I will start the 15min Logout timer.... In this case I would check the differenct(lastInteractionTime and System.currentTimeMills()) is more than 1 min... then fire.. – AKh Nov 18 '10 at 1:13
up vote 4 down vote accepted
MyApplciation extents Application(){
  private int lastInteraction;
  private Boolean isScreenOff = false; 
  public void onCreate(){
  super.onCreate();
  ......   
  startUserInactivityDetectThread(); // start the thread to detect inactivity
     new ScreenReceiver();  // creating receive SCREEN_OFF and SCREEN_ON broadcast msgs from the device.
  }

  public void startUserInactivityDetectThread(){
    new Thread(new Runnable() {
       public void run() {
         while(true) {
            Thread.sleep(15000); // checks every 15sec for inactivity
              if(isScreenOff || getLastInteractionTime > 120000 ||  !isInForeGrnd)
              {
                //...... means USER has been INACTIVE over a period of
                // and you do your stuff like log the user out 
              }
            }
         }).start();
       }

    public long getLastInteractionTime() {
       return lastInteractionTime;
    }

    public long setLastInteractionTime(int lastInteraction) {
       lastInteractionTime = lastInteraction;
    }

    private class ScreenReceiver extends BroadcastReceiver {

    protected ScreenReceiver() {
       // register receiver that handles screen on and screen off logic
       IntentFilter filter = new IntentFilter();
       filter.addAction(Intent.ACTION_SCREEN_ON);
       filter.addAction(Intent.ACTION_SCREEN_OFF);
       registerReceiver(this, filter);
    }

    @Override
    public void onReceive(Context context, Intent intent) {
       if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
         isScreenOff = true;
       } else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
           isScreenOff = false;
       }
      }
      }
     }

isInForeGrnd ===> logic is not shown here as it is out of scope of the question

share|improve this answer
sorry, but this is not the right way doing it. – Nappy May 3 '11 at 8:43
1  
@Nappy: Then please explain the right way of doing this. Your comment is vague and indecisive. – AKh May 3 '11 at 17:08
@AKh: The other answers already show the possibilities. In your solution, I cannot see any benefit from polling every 15 seconds. It would have the same effect, as you start a timer on "ACTION_SCREEN_OFF" with a random duration from 0-15 seconds. This just does not make sense.. – Nappy May 3 '11 at 17:32
1  
@Nappy: Every 15 sec I not only check for SCREEN_ON or SCREEN_OFF but also for user's last interaction time and App foreground status. Based on these three factors I make a logical decision on how active the user is interacting with the app. – AKh May 3 '11 at 18:27
Please complete your comment. ...."if your isScreenof boolean is ?" And also the app foregrnd status has to be taken into account. – AKh May 3 '11 at 22:33
show 5 more comments

I came up with a solution that I find quite simple based on Fredrik Wallenius's answer. This a base activity class that needs to be extended by all activities.

public class MyBaseActivity extends Activity {

    public static final long DISCONNECT_TIMEOUT = 300000; // 5 min = 5 * 60 * 1000 ms

    private Handler disconnectHandler = new Handler(){
        public void handleMessage(Message msg) {
        }
    };

    private Runnable disconnectCallback = new Runnable() {
        @Override
        public void run() {
            // Perform any required operation on disconnect
        }
    };

    public void resetDisconnectTimer(){
        disconnectHandler.removeCallbacks(disconnectCallback);
        disconnectHandler.postDelayed(disconnectCallback, DISCONNECT_TIMEOUT);
    }

    public void stopDisconnectTimer(){
        disconnectHandler.removeCallbacks(disconnectCallback);
    }

    @Override
    public void onUserInteraction(){
        resetDisconnectTimer();
    }

    @Override
    public void onResume() {
        super.onResume();
        resetDisconnectTimer();
    }

    @Override
    public void onStop() {
        super.onStop();
        stopDisconnectTimer();
    }
}
share|improve this answer

In my activity base class I created protected class:

protected class IdleTimer
{
    private Boolean isTimerRunning;
    private IIdleCallback idleCallback;
    private int maxIdleTime;
    private Timer timer;

    public IdleTimer(int maxInactivityTime, IIdleCallback callback)
    {
        maxIdleTime = maxInactivityTime;
        idleCallback = callback;
    }

    /*
     * creates new timer with idleTimer params and schedules a task
     */
    public void startIdleTimer()
    {
        timer = new Timer();            
        timer.schedule(new TimerTask() {

            @Override
            public void run() {             
                idleCallback.inactivityDetected();
            }
        }, maxIdleTime);
        isTimerRunning = true;
    }

    /*
     * schedules new idle timer, call this to reset timer
     */
    public void restartIdleTimer()
    {
        stopIdleTimer();
        startIdleTimer();
    }

    /*
     * stops idle timer, canceling all scheduled tasks in it
     */
    public void stopIdleTimer()
    {
        timer.cancel();
        isTimerRunning = false;
    }

    /*
     * check current state of timer
     * @return boolean isTimerRunning
     */
    public boolean checkIsTimerRunning()
    {
        return isTimerRunning;
    }
}

protected interface IIdleCallback
{
    public void inactivityDetected();
}

So in onResume method - you can specify action in your callback what do you wish to do with it...

idleTimer = new IdleTimer(60000, new IIdleCallback() {
            @Override
            public void inactivityDetected() {
                ...your move...
            }
        });
        idleTimer.startIdleTimer();
share|improve this answer

There is no concept of "user inactivity" at the OS level, beyond the ACTION_SCREEN_OFF and ACTION_USER_PRESENT broadcasts. You will have to define "inactivity" somehow within your own application.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.