The first click in the button was has been already subtracted. For example the value inside the button is 3 it became 2 after clicking. How to reduce value in every click you made in the button?
String uid = Objects.requireNonNull(FirebaseAuth.getInstance().getCurrentUser()).getUid();
databaseReference = FirebaseDatabase.getInstance().getReference();
uidRefItem = databaseReference.child("UserItem").child(uid);
Here inside of the button.
uidRefItem.child("TimerAddOnemin").setValue(getTimerAdd - 1);
On my second click the value on database didn't update only on first click.