|
|
@@ -26,6 +26,7 @@ import kr.co.zumo.app.lifeplus.view.Event;
|
|
|
*/
|
|
|
public class SignUpStartOnBoardingFragment extends SignUpStartFragment {
|
|
|
|
|
|
+
|
|
|
@Nullable
|
|
|
@Override
|
|
|
protected View onAfterCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
@@ -43,8 +44,9 @@ public class SignUpStartOnBoardingFragment extends SignUpStartFragment {
|
|
|
title.setText(R.string.sign_up_hello_from_on_boarding);
|
|
|
description.setText(R.string.sign_up_hello_from_on_boarding_detail);
|
|
|
|
|
|
- View buttonAuthorization = parent.findViewById(R.id.button_confirm);
|
|
|
- buttonAuthorization.setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.SUCCESS).build()));
|
|
|
+ layoutContainer = getView().findViewById(R.id.layout_container);
|
|
|
+ button = getView().findViewById(R.id.button_confirm);
|
|
|
+ button.setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.SUCCESS).build()));
|
|
|
}
|
|
|
|
|
|
@Override
|