[android] update counter view after value setting

This commit is contained in:
Alexey Osminin 2020-10-21 17:51:33 +03:00 committed by Alexander Boriskov
parent 8289ca4924
commit c76829cf26

View file

@ -140,6 +140,7 @@ public class InteractiveCounterView extends RelativeLayout
public void setCurrentValue(int value)
{
mCounterView.setText(String.valueOf(value));
updateConstraints();
}
private void updateConstraints()