Fixed formatting issues

This commit is contained in:
jan_bar 2013-04-25 17:54:52 +02:00
parent 0822058712
commit 6aaf8143de
3 changed files with 11 additions and 12 deletions

View File

@ -746,10 +746,10 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener,
// store original color
origTitleColors[viewType] = Integer.valueOf(tv.getCurrentTextColor());
if(score < -100) {
if (score < -100) {
tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
} else if(score > 500) {
if(unread)
} else if (score > 500) {
if (unread)
tv.setTextColor(titleHighScoreUnreadColor);
tv.setPaintFlags(tv.getPaintFlags() & ~Paint.STRIKE_THRU_TEXT_FLAG);
} else {
@ -760,7 +760,6 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener,
}
public void notifyUpdated() {
m_adapter.notifyDataSetChanged();
}

View File

@ -285,7 +285,7 @@ public class OfflineArticleFragment extends Fragment implements GestureDetector.
if (author != null) {
int authorIndex = m_cursor.getColumnIndex("author");
if(authorIndex >= 0)
if (authorIndex >= 0)
author.setText(m_cursor.getString(authorIndex));
else
author.setVisibility(View.GONE);

View File

@ -536,7 +536,7 @@ public class OfflineHeadlinesFragment extends Fragment implements OnItemClickLis
if (ta != null) {
int authorIndex = article.getColumnIndex("author");
if(authorIndex >= 0)
if (authorIndex >= 0)
ta.setText(article.getString(authorIndex));
}
@ -602,10 +602,10 @@ public class OfflineHeadlinesFragment extends Fragment implements OnItemClickLis
// store original color
origTitleColors[viewType] = Integer.valueOf(tv.getCurrentTextColor());
if(score < -100) {
if (score < -100) {
tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
} else if(score > 500) {
if(unread)
} else if (score > 500) {
if (unread)
tv.setTextColor(titleHighScoreUnreadColor);
tv.setPaintFlags(tv.getPaintFlags() & ~Paint.STRIKE_THRU_TEXT_FLAG);
} else {