fix crash in NumberPicker
This commit is contained in:
parent
c0ec445fbe
commit
6daba3b9e7
1 changed files with 4 additions and 2 deletions
|
@ -163,13 +163,15 @@ public class NumberPicker extends LinearLayout implements View.OnKeyListener,
|
|||
value = maxValue;
|
||||
ToastUtils.showToastInUiThread(MainApp.instance().getApplicationContext(), MainApp.gs(R.string.youareonallowedlimit));
|
||||
updateEditText();
|
||||
okButton.setVisibility(VISIBLE);
|
||||
if (okButton != null)
|
||||
okButton.setVisibility(VISIBLE);
|
||||
}
|
||||
if (value < minValue) {
|
||||
value = minValue;
|
||||
ToastUtils.showToastInUiThread(MainApp.instance().getApplicationContext(), MainApp.gs(R.string.youareonallowedlimit));
|
||||
updateEditText();
|
||||
okButton.setVisibility(VISIBLE);
|
||||
if (okButton != null)
|
||||
okButton.setVisibility(VISIBLE);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue