|
|
@@ -1,7 +1,6 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.notification;
|
|
|
|
|
|
import android.support.constraint.ConstraintLayout;
|
|
|
-import android.text.Spanned;
|
|
|
import android.view.View;
|
|
|
import android.webkit.WebView;
|
|
|
import android.widget.ImageView;
|
|
|
@@ -10,7 +9,6 @@ import android.widget.TextView;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
import kr.co.zumo.app.lifeplus.bean.api.NoticeBean;
|
|
|
-import kr.co.zumo.app.lifeplus.util.StringUtil;
|
|
|
import kr.co.zumo.app.lifeplus.view.Event;
|
|
|
import kr.co.zumo.app.lifeplus.view.IEventListener;
|
|
|
|
|
|
@@ -28,7 +26,7 @@ public class NotiExpandableViewHolder extends NotiViewHolder {
|
|
|
private TextView textViewAlarmCategory;
|
|
|
private TextView textViewAlarmTitle;
|
|
|
private TextView textViewAlarmDate;
|
|
|
- private TextView textViewAlarmContents;
|
|
|
+ //private TextView textViewAlarmContents;
|
|
|
private ImageView imageViewOpenArrow;
|
|
|
private ConstraintLayout layoutTop;
|
|
|
private WebView webView;
|
|
|
@@ -49,7 +47,7 @@ public class NotiExpandableViewHolder extends NotiViewHolder {
|
|
|
|
|
|
@Override
|
|
|
public void bind(NoticeBean bean, IEventListener listener) {
|
|
|
- Spanned contents = StringUtil.fromHtml(bean.getContents());
|
|
|
+ // Spanned contents = StringUtil.fromHtml(bean.getContents());
|
|
|
textViewAlarmCategory.setText(bean.getFlagName());
|
|
|
textViewAlarmTitle.setText(bean.getTitle());
|
|
|
textViewAlarmDate.setText(bean.getDate());
|