|
|
@@ -12,7 +12,7 @@ import android.view.ViewGroup;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
import kr.co.zumo.app.lifeplus.view.Event;
|
|
|
-import kr.co.zumo.app.lifeplus.view.custom.pin.CustomPinConfirmPresenter;
|
|
|
+import kr.co.zumo.app.lifeplus.view.custom.pin.CustomPinInputPresenter;
|
|
|
import kr.co.zumo.app.lifeplus.view.custom.pin.CustomPinView;
|
|
|
import kr.co.zumo.app.lifeplus.view.custom.pin.IPinContract;
|
|
|
|
|
|
@@ -63,7 +63,7 @@ public class PinConfirmDialog extends DialogBase {
|
|
|
|
|
|
|
|
|
customPinView = new CustomPinView(getContext());
|
|
|
- pinPresenter = new CustomPinConfirmPresenter(customPinView, new IPinContract.Listener() {
|
|
|
+ pinPresenter = new CustomPinInputPresenter(customPinView, new IPinContract.Listener() {
|
|
|
@Override
|
|
|
public void onPinResult(String result) {
|
|
|
if (null != getResultListener()) {
|
|
|
@@ -73,9 +73,7 @@ public class PinConfirmDialog extends DialogBase {
|
|
|
|
|
|
@Override
|
|
|
public void onClickPinReset() {
|
|
|
- if (null != getResultListener()) {
|
|
|
- getResultListener().onDialogResult(PinConfirmDialog.this, new Event.Builder(Event.RESET).build());
|
|
|
- }
|
|
|
+ // 리셋 버튼 보이지 않음.
|
|
|
}
|
|
|
|
|
|
@Override
|