I currently face a serious problem with the onLongerClickListener. For instance you have some View running and want to make a button visible/invisible on when a onLongerClick event is received by the view.

view.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public boolean onLongClick(View v) {
        switch (button.getVisibility()) {
        case View.VISIBLE:
            button.setVisibility(View.INVISIBLE);
            break;
        case View.INVISIBLE:
            button.setVisibility(View.VISIBLE);
            break;
        default:
            break;
        }

        return true;
    }
});

After you longerclick on the view and the button changes its visibility the view will not receive any other longerclick events.

Has anyone an idea how to fix/workaround that?

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.