summaryrefslogtreecommitdiff
path: root/src/de
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-03-07 16:07:10 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2013-03-07 16:07:10 +0100
commitba0f294850ea0b1a4ec6417c7185019db97f7bcd (patch)
tree92f6f2c3636c7c90c241d05e1cd3c94e8c3cb360 /src/de
parent58747d227a123f6a1ef3641e2941115bb52aace1 (diff)
downloadAntennaPod-ba0f294850ea0b1a4ec6417c7185019db97f7bcd.zip
Removed 'status unread' indicator from queue
Diffstat (limited to 'src/de')
-rw-r--r--src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java b/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java
index db716c66e..64eec8a38 100644
--- a/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java
+++ b/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java
@@ -89,8 +89,6 @@ public class ExternalEpisodesListAdapter extends BaseExpandableListAdapter {
.findViewById(R.id.butAction);
holder.statusPlaying = (View) convertView
.findViewById(R.id.statusPlaying);
- holder.statusUnread = (View) convertView
- .findViewById(R.id.statusUnread);
holder.statusInProgress = (TextView) convertView
.findViewById(R.id.statusInProgress);
convertView.setTag(holder);
@@ -106,30 +104,25 @@ public class ExternalEpisodesListAdapter extends BaseExpandableListAdapter {
switch (state) {
case PLAYING:
holder.statusPlaying.setVisibility(View.VISIBLE);
- holder.statusUnread.setVisibility(View.GONE);
holder.statusInProgress.setVisibility(View.GONE);
break;
case IN_PROGRESS:
holder.statusPlaying.setVisibility(View.GONE);
- holder.statusUnread.setVisibility(View.GONE);
holder.statusInProgress.setVisibility(View.VISIBLE);
holder.statusInProgress.setText(Converter
.getDurationStringLong(item.getMedia().getPosition()));
break;
case NEW:
holder.statusPlaying.setVisibility(View.GONE);
- holder.statusUnread.setVisibility(View.VISIBLE);
holder.statusInProgress.setVisibility(View.GONE);
break;
default:
holder.statusPlaying.setVisibility(View.GONE);
- holder.statusUnread.setVisibility(View.GONE);
holder.statusInProgress.setVisibility(View.GONE);
break;
}
} else {
holder.statusPlaying.setVisibility(View.GONE);
- holder.statusUnread.setVisibility(View.GONE);
holder.statusInProgress.setVisibility(View.GONE);
}
@@ -188,7 +181,6 @@ public class ExternalEpisodesListAdapter extends BaseExpandableListAdapter {
ImageView downloadStatus;
ImageView feedImage;
ImageButton butAction;
- View statusUnread;
View statusPlaying;
TextView statusInProgress;
}