Sfoglia il codice sorgente

[공통][Common] 알림 진입 시 알림창 띄움

hyodong.min 7 anni fa
parent
commit
78f9e08997

+ 4 - 1
app/src/main/java/kr/co/zumo/app/lifeplus/view/screen/menu/AllMenuPresenter.java

@@ -21,6 +21,7 @@ import kr.co.zumo.app.lifeplus.view.presenter.Presenter;
 public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
 
   private DialogBase alertDialog;
+
   public AllMenuPresenter(AllMenuModel model, IView view) {
     super(model, view);
   }
@@ -107,7 +108,9 @@ public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
 
   @Override
   public void onNavigationClickNotification(NavigationBar navigationBar) {
-    go(ScreenID.NOTIFICATION);
+//    go(ScreenID.NOTIFICATION);
+    // TODO: 추후개발 예정
+    showErrorDialog(R.string.ready_comment);
   }
 
   @Override