浏览代码

[공통][Common] 코인, 쿠폰몰 진입시 알림창 띄움

hyodong.min 7 年之前
父节点
当前提交
24d5c0990b

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

@@ -44,6 +44,7 @@ public class AllMenuFragment extends FragmentBase<AllMenuPresenter> {
 
     findViewById(R.id.text_my).setOnClickListener(v -> presenter.onEvent(new Event.Builder(Event.MY).build()));
     findViewById(R.id.text_view_faq).setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.FAQ).build()));
+    findViewById(R.id.text_event).setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.EVENT).build()));
     findViewById(R.id.text_coupon).setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.COUPON_MALL).build()));
     findViewById(R.id.text_view_life_plus_guide).setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.GUIDE).build()));
 

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

@@ -87,6 +87,10 @@ public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
       case Event.GUIDE:
         go(ScreenID.LIFE_PLUS_INTRODUCTION);
         break;
+      case Event.EVENT:
+        // TODO: 추후개발 예정
+        showErrorDialog(R.string.ready_comment);
+        break;
       case Event.COUPON_MALL:
         // TODO: 추후개발 예정
         showErrorDialog(R.string.ready_comment);

+ 2 - 2
app/src/main/res/layout/fragment_all_menu.xml

@@ -149,7 +149,7 @@
         android:lineSpacingExtra="5.5sp"
         android:padding="10dp"
         android:text="@string/menu_category2"
-        android:textColor="@color/C000000"
+        android:textColor="@color/C999999"
         android:textSize="15sp"/>
 
       <TextView
@@ -160,7 +160,7 @@
         android:lineSpacingExtra="5.5sp"
         android:padding="10dp"
         android:text="@string/menu_category3"
-        android:textColor="@color/C000000"
+        android:textColor="@color/C999999"
         android:textSize="15sp"/>
     </LinearLayout>