Quellcode durchsuchen

[컨텐츠][New] 구매 예약 포인트 표시 3

hyodong.min vor 6 Jahren
Ursprung
Commit
5bd1a65c0c

+ 2 - 2
app/src/main/java/kr/co/zumo/app/lifeplus/view/screen/contents/AddingRect.java

@@ -64,10 +64,10 @@ public class AddingRect {
           /**
            * type == ContentsItemBean.TYPE_ATTRIBUTE_PURCHASE 이면 point 로 그려줌
            */
-          if (ContentsItemBean.TYPE_ATTRIBUTE_PURCHASE.equals(type)) {
+          if (ContentsItemBean.TYPE_ATTRIBUTE_CONTENTS.equals(type)) {
             imageView = getRect(rectBean, parent, width, height, listener);
           }
-          else if (ContentsItemBean.TYPE_ATTRIBUTE_CONTENTS.equals(type)) {
+          else if (ContentsItemBean.TYPE_ATTRIBUTE_PURCHASE.equals(type)) {
             imageView = getPoint(rectBean, parent, width, height, listener);
           }