|
|
@@ -22,6 +22,7 @@ import android.widget.TextView;
|
|
|
import com.bumptech.glide.Glide;
|
|
|
import com.bumptech.glide.request.RequestOptions;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
@@ -37,7 +38,7 @@ import kr.co.zumo.app.lifeplus.view.screen.FragmentBase;
|
|
|
import me.everything.android.ui.overscroll.OverScrollDecoratorHelper;
|
|
|
|
|
|
/**
|
|
|
- * MyBucketListRelatedTagFragment
|
|
|
+ * BucketListWithTagDetailFragment
|
|
|
* <pre>
|
|
|
* </pre>
|
|
|
*
|
|
|
@@ -156,7 +157,7 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
@Override
|
|
|
public void drawTag(List<TagBean> beans) {
|
|
|
if (null == beans || beans.size() == 0) {
|
|
|
- Log.e("APP# BucketListDetailFragment | drawTag", "| " + "beans is null");
|
|
|
+ Log.e("APP# BucketListWithTagDetailFragment | drawTag", "| " + "beans is null");
|
|
|
}
|
|
|
else {
|
|
|
int len = beans.size();
|
|
|
@@ -185,8 +186,8 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
@Override
|
|
|
public void drawList(List<LifeplusContentsBean> contentsBeans) {
|
|
|
if (null == contentsBeans) {
|
|
|
- Log.e("APP# BucketListDetailFragment | drawList", "| " + "contentsBeans is null");
|
|
|
- return;
|
|
|
+ Log.e("APP# BucketListWithTagDetailFragment | drawList", "| " + "contentsBeans is null");
|
|
|
+ contentsBeans = new ArrayList<>();
|
|
|
}
|
|
|
|
|
|
setTagTitle(contentsBeans.size());
|
|
|
@@ -281,7 +282,7 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
checkBox.setChecked(isChecked);
|
|
|
}
|
|
|
else {
|
|
|
- Log.e("APP# BucketListDetailFragment | setCheckedTag", "|" + "Tag 가 모자랍니다.");
|
|
|
+ Log.e("APP# BucketListWithTagDetailFragment | setCheckedTag", "|" + "Tag 가 모자랍니다.");
|
|
|
}
|
|
|
}
|
|
|
|