summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflofriday <flohacksfriday@gmail.com>2024-05-06 22:14:26 +0200
committerGitHub <noreply@github.com>2024-05-06 22:14:26 +0200
commit2827f414303c998d926ebcb3293b799467639c5b (patch)
tree86e6c94fc8bfea1409743f200094b2c51218e68c
parent6f572faa778de22cf50b10f23897cf869d0794b4 (diff)
downloadAntennaPod-2827f414303c998d926ebcb3293b799467639c5b.zip
Improve layout for missing chapter images (#7164)
If only some chapters have images the other chapters don't display anything but reserve space for the image. Now those chapters display the image of the episode. If no chapters have images no images will be displayed (just like before).
-rw-r--r--app/src/main/java/de/danoeh/antennapod/ui/screen/chapter/ChaptersListAdapter.java23
1 files changed, 18 insertions, 5 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/ui/screen/chapter/ChaptersListAdapter.java b/app/src/main/java/de/danoeh/antennapod/ui/screen/chapter/ChaptersListAdapter.java
index bf84b7bd7..16672414a 100644
--- a/app/src/main/java/de/danoeh/antennapod/ui/screen/chapter/ChaptersListAdapter.java
+++ b/app/src/main/java/de/danoeh/antennapod/ui/screen/chapter/ChaptersListAdapter.java
@@ -19,6 +19,7 @@ import de.danoeh.antennapod.R;
import de.danoeh.antennapod.model.feed.Chapter;
import de.danoeh.antennapod.ui.common.Converter;
import de.danoeh.antennapod.model.feed.EmbeddedChapterImage;
+import de.danoeh.antennapod.ui.common.ImagePlaceholder;
import de.danoeh.antennapod.ui.common.IntentUtils;
import de.danoeh.antennapod.model.playback.Playable;
import de.danoeh.antennapod.ui.common.CircularProgressBar;
@@ -99,15 +100,27 @@ public class ChaptersListAdapter extends RecyclerView.Adapter<ChaptersListAdapte
if (hasImages) {
holder.image.setVisibility(View.VISIBLE);
+
+ float radius = 4 * context.getResources().getDisplayMetrics().density;
+ RequestOptions options = new RequestOptions()
+ .placeholder(ImagePlaceholder.getDrawable(context, radius))
+ .dontAnimate()
+ .transform(new FitCenter(), new RoundedCorners((int) radius));
+
if (TextUtils.isEmpty(sc.getImageUrl())) {
- Glide.with(context).clear(holder.image);
+ if (media.getImageLocation() == null) {
+ Glide.with(context).clear(holder.image);
+ holder.image.setVisibility(View.GONE);
+ } else {
+ Glide.with(context)
+ .load(media.getImageLocation())
+ .apply(options)
+ .into(holder.image);
+ }
} else {
Glide.with(context)
.load(EmbeddedChapterImage.getModelFor(media, position))
- .apply(new RequestOptions()
- .dontAnimate()
- .transform(new FitCenter(), new RoundedCorners((int)
- (4 * context.getResources().getDisplayMetrics().density))))
+ .apply(options)
.into(holder.image);
}
} else {