Refactoring (#517)
This commit is contained in:
parent
2c4f83d122
commit
c9717a2bab
1 changed files with 18 additions and 8 deletions
|
@ -192,7 +192,6 @@ public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickL
|
||||||
public void setRssItem(RssItem rssItem) {
|
public void setRssItem(RssItem rssItem) {
|
||||||
this.rssItem = rssItem;
|
this.rssItem = rssItem;
|
||||||
String title = null;
|
String title = null;
|
||||||
String body = rssItem.getBody();
|
|
||||||
String favIconUrl = null;
|
String favIconUrl = null;
|
||||||
if(rssItem.getFeed() != null) {
|
if(rssItem.getFeed() != null) {
|
||||||
title = rssItem.getFeed().getFeedTitle();
|
title = rssItem.getFeed().getFeedTitle();
|
||||||
|
@ -206,21 +205,32 @@ public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickL
|
||||||
|
|
||||||
setFeedColor(ColorHelper.getFeedColor(itemView.getContext(), rssItem.getFeed()));
|
setFeedColor(ColorHelper.getFeedColor(itemView.getContext(), rssItem.getFeed()));
|
||||||
|
|
||||||
if(textViewSummary != null)
|
if(textViewSummary != null) {
|
||||||
textViewSummary.setText(Html.fromHtml(rssItem.getTitle()).toString());
|
try {
|
||||||
|
//byte[] arrByteForSpanish = rssItem.getTitle().getBytes("ISO-8859-1");
|
||||||
|
//String spanish = new String(arrByteForSpanish);//.getBytes("UTF-8");
|
||||||
|
//textViewSummary.setText(Html.fromHtml(spanish));
|
||||||
|
|
||||||
if(textViewTitle != null)
|
textViewSummary.setText(Html.fromHtml(rssItem.getTitle()));
|
||||||
textViewTitle.setText(title);
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(textViewTitle != null) {
|
||||||
|
textViewTitle.setText(Html.fromHtml(title));
|
||||||
|
}
|
||||||
|
|
||||||
if(textViewBody != null) {
|
if(textViewBody != null) {
|
||||||
|
String body = rssItem.getBody();
|
||||||
// Strip html from String
|
// Strip html from String
|
||||||
|
|
||||||
if(selectedListLayout == 3) {
|
if(selectedListLayout == 3) {
|
||||||
textViewBody.setMaxLines(200);
|
textViewBody.setMaxLines(200);
|
||||||
textViewBody.setText(getBodyText(body, false));
|
body = getBodyText(body, false);
|
||||||
} else {
|
} else {
|
||||||
textViewBody.setText(getBodyText(body, true));
|
body = getBodyText(body, true);
|
||||||
}
|
}
|
||||||
|
textViewBody.setText(Html.fromHtml(body));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(textViewItemDate != null)
|
if(textViewItemDate != null)
|
||||||
|
|
Loading…
Reference in a new issue