I'm trying to make this work:
ControlView btnClearCounter = mLayout.findViewById(R.id.btn_clear);
btnClearCounter.setOnClickListener(new OnClickListener() {
@Override
public void onClick() {
mCounter=mCounter-1;
updatePressedText();
}
});
btnClearCounter.setOnLongClickListener(new OnLongClickListener() {
@Override
public void onLongClick() {
mCounter=0;
updatePressedText();
}
});
Can't get the onLongClick to fire.
How to do that?