We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77fd31b commit 20317bdCopy full SHA for 20317bd
ui/src/main/java/io/snabble/sdk/ui/payment/SEPACardInputView.java
@@ -89,6 +89,8 @@ public void afterTextChanged(Editable s) {
89
}
90
});
91
92
+ ibanCountryCode.setEnabled(false);
93
+
94
ibanInput.addTextChangedListener(new TextWatcher() {
95
boolean isUpdating;
96
@@ -196,9 +198,9 @@ private void saveCard() {
196
198
} else {
197
199
ibanError.setVisibility(View.VISIBLE);
200
shake(ibanInput);
- shake(ibanCountryCode);
201
+ //shake(ibanCountryCode);
202
ibanInput.setBackgroundResource(R.drawable.ic_round_edittext_error);
- ibanCountryCode.setBackgroundResource(R.drawable.ic_round_edittext_error);
203
+ //ibanCountryCode.setBackgroundResource(R.drawable.ic_round_edittext_error);
204
ok = false;
205
206
0 commit comments