Browse Source

Penny test fixes

master
Preyea Regmi 6 years ago
parent
commit
6f66ee9e80
  1. 12
      app/src/main/java/com/gmeremit/online/gmeremittance_native/kycV2/view/pennytest/PennyTestActivity.java

12
app/src/main/java/com/gmeremit/online/gmeremittance_native/kycV2/view/pennytest/PennyTestActivity.java

@ -312,11 +312,19 @@ public class PennyTestActivity extends BaseActivity implements View.OnClickListe
submitBtn.setText("Submit"); submitBtn.setText("Submit");
} }
//
// @Override
// public boolean onTouchEvent(MotionEvent event) {
// if (!isLoadingInProgress)
// return super.onTouchEvent(event);
// else
// return true;
// }
@Override @Override
public boolean onTouchEvent(MotionEvent event) {
public boolean dispatchTouchEvent(MotionEvent ev) {
if (!isLoadingInProgress) if (!isLoadingInProgress)
return super.onTouchEvent(event);
return super.dispatchTouchEvent(ev);
else else
return true; return true;
} }

Loading…
Cancel
Save