Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6929799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:21:50+00:00 2026-05-27T11:21:50+00:00

I need to implement a custom double tap with time. Example: set to 500ms,

  • 0

I need to implement a custom double tap with time. Example: set to 500ms, 300ms and 700ms. I did not find how to configure it! The problem is to treat it in a class of a Gesture, see:

public boolean onTouchEvent(View v, MotionEvent e) throws InterruptedException {


    Button  button_now = activity.getButtonByPosition(e.getRawX(), e.getRawY());
    Date d = new Date(); 
    long now = d.getTime();                 


    if(e.getAction() == MotionEvent.ACTION_UP){
            if(button_now != null){                 

                if(button_last != null){                        

                    if(button_now.getId() == button_last.getId())){


                        if(now < lastTouchedTime + DOUBLE_TAP_DELAY){
                            Log.d(tag,"Double tap");
                        }                           
                        else {
                            Log.d(tag,"Single Tap A");
                        }                           
                    }else{
                        Log.d(tag,"Single Tap B");

                    }
                }else{
                    Log.d(tag,"Single Tap C");                      
                }
            }               
            lastTouchedTime = now;
            button_last = button_now;                           
    }       
    return true;
}

The problem is: When you double-tap is running, there is also “Single Tap A” before. Could anyone help me?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:21:51+00:00Added an answer on May 27, 2026 at 11:21 am

    I am reporting an example of mine that distinuishes from long tap and single tap

    private boolean DRAGGING;
    private boolean ISRELEASED;
    private boolean LONGPRESSED;
    private Handler mHandler = new Handler();
    static private final int LONG_PRESS_THRESHOLD = 500; //ms
    
    public boolean onTouch(View v, MotionEvent event) {
    
        int eventaction = event.getAction();
        switch (eventaction) {
        case MotionEvent.ACTION_MOVE: // touch drag
            // Log.v(TAG,"dragging");
            mHandler.removeCallbacks(checkLongPress);
    
            DRAGGING = true;
    
            start_drag_x = (int) event.getRawX();
            start_drag_y = (int) event.getRawY();
    
            break;
    
        case MotionEvent.ACTION_DOWN: {
            ISRELEASED = false;
            mHandler.postDelayed(checkLongPress, LONG_PRESS_THRESHOLD);
    
            DRAGGING = false;
    
            start_drag_x = (int) event.getRawX();
            start_drag_y = (int) event.getRawY();
    
            break;
        }
    
        case MotionEvent.ACTION_UP:
            ISRELEASED = true;
            mHandler.removeCallbacks(checkLongPress);
            if ((!LONGPRESSED) && (!DRAGGING))
                onTouchedCard();
            LONGPRESSED = false;
    
            if (DRAGGING) {
                // reposition of card view
                //onDraggedCard();
                DRAGGING = false;
            }
            break;
        }
        return true;
    }
    public void onTouchedCard() {
    //Do stuff for single tap
    }
    public void onLongTouchedCard(){
    //Do stuff for long tap
    }
    private Runnable checkLongPress = new Runnable() {
    public void run() {
        if (!ISRELEASED) {
            onLongTouchedCard(); //Do stuff for long tap
            LONGPRESSED = true;
        } else
            onTouchedCard();
    }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to implement a custom handler for MVC that gives me the first
Hey, i'm extending some WPF controls, and need to implement some custom events. I've
I need to implement a SSO between a SharePoint site and a custom PHP-based
I need to implement a plugin architecture within c#/.net in order to load custom
I'm trying to implement a custom control in C# and I need to get
I need to implement a Diff algorithm in VB.NET to find the changes between
I have a situation where i need to implement a custom tree cell renderer.
I need to implement creating custom gesture(like Gesture Builder in Android ) in my
while creating custom item renderers which interfaces we need to implement? Thank in advance.
I need to IMPLEMENT(not to use some library/open source) an event/message system. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.