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?