|
|
@@ -1,5 +1,6 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.contents;
|
|
|
|
|
|
+import android.util.Log;
|
|
|
import android.view.View;
|
|
|
import android.widget.LinearLayout;
|
|
|
|
|
|
@@ -50,6 +51,7 @@ public class ContentsDetailListicleDetailViewHolder extends ContentsDetailView<C
|
|
|
|
|
|
|
|
|
for (int i = 0; i < bean.getDescriptionList().size(); i++) {
|
|
|
+ Log.e("APP# ContentsDetailListicleDetailViewHolder | attach", "|" + bean.getDescriptionList().size());
|
|
|
ContentsDescriptionBean contentsDescriptionBean = bean.getDescriptionList().get(i);
|
|
|
CustomListicleInformationView informationView = new CustomListicleInformationView(itemView.getContext(), String.valueOf(i + 1) + ".", contentsDescriptionBean.getDescription());
|
|
|
layoutContainer.addView(informationView);
|
|
|
@@ -60,6 +62,7 @@ public class ContentsDetailListicleDetailViewHolder extends ContentsDetailView<C
|
|
|
@Override
|
|
|
public void detach() {
|
|
|
Glide.with(customListicleImageView).clear(customListicleImageView);
|
|
|
+ layoutContainer.removeAllViews();
|
|
|
}
|
|
|
|
|
|
@Override
|