Androider
Androider

Reputation: 21335

Android Touch Event determining duration

How does one detect the duration of an Android 2.1 touch event? I would like to respond only if the region has been pressed for say 5 seconds?

Upvotes: 9

Views: 14934

Answers (3)

Calebe Santos
Calebe Santos

Reputation: 479

long eventDuration = event.getEventTime() - event.getDownTime();

Upvotes: 24

Sebastian Ullrich
Sebastian Ullrich

Reputation: 1037

You can't use unix timestamps in this case. Android offers it's own time measurement.

long eventDuration = 
            android.os.SystemClock.elapsedRealtime() 
            - event.getDownTime();

Upvotes: 8

Wroclai
Wroclai

Reputation: 26925

You could try mixing MotionEvent and Runnable/Handler to achieve this.

Sample code:

private final Handler handler = new Handler();
private final Runnable runnable = new Runnable() {
    public void run() {
         checkGlobalVariable();
    }
};

// Other init stuff etc...

@Override
public void onTouchEvent(MotionEvent event) {
    if(event.getAction() == MotionEvent.ACTION_DOWN) {
        // Execute your Runnable after 5000 milliseconds = 5 seconds.
        handler.postDelayed(runnable, 5000);
        mBooleanIsPressed = true;
    }

    if(event.getAction() == MotionEvent.ACTION_UP) {
        if(mBooleanIsPressed) {
            mBooleanIsPressed = false;
            handler.removeCallbacks(runnable);
        }
    }
}

Now you only need to check if mBooleanIsPressed is true in the checkGlobalVariable() function.

One idea I came up with when I was writing this was to use simple timestamps (e.g. System.currentTimeMillis()) to determine the duration between MotionEvent.ACTION_DOWN and MotionEvent.ACTION_UP.

Upvotes: 15

Related Questions