|
|
@@ -77,15 +77,19 @@ public class ContentsListicleCoverHolder extends ContentsHolder<ContentsDetailBe
|
|
|
int len = bean.getTagList().size();
|
|
|
len = Math.min(len, 2);
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
- stringBuilder.append(String.format("#%s", bean.getTagList().get(i).getTagName()));
|
|
|
+ stringBuilder.append(String.format("#%s", bean.getTagList().get(i).getTagName())).append(" ");
|
|
|
}
|
|
|
|
|
|
- textViewTag1.setText(stringBuilder.toString() + " ");
|
|
|
+ textViewTag1.setText(stringBuilder.toString());
|
|
|
|
|
|
// TODO: copyright 처리
|
|
|
- if(null != bean.getCopyRight()){
|
|
|
+ if (null != bean.getCopyRight()) {
|
|
|
textViewCopyRight.setText(bean.getCopyRight());
|
|
|
}
|
|
|
+ else {
|
|
|
+ textViewCopyRight.setText(R.string.copy_right);
|
|
|
+ }
|
|
|
+
|
|
|
imageViewArrow.setOnClickListener(view -> {listener.onEvent(new Event.Builder(Event.SCROLL).build());});
|
|
|
}
|
|
|
|