Use strings to point to images, not uris
This commit is contained in:
parent
c4b0df6f09
commit
92d63a6570
@ -140,7 +140,7 @@ public class FeedInfoActivity extends ActionBarActivity {
|
|||||||
Log.d(TAG, "URL is " + feed.getDownload_url());
|
Log.d(TAG, "URL is " + feed.getDownload_url());
|
||||||
FeedPreferences prefs = feed.getPreferences();
|
FeedPreferences prefs = feed.getPreferences();
|
||||||
imgvCover.post(() -> Glide.with(FeedInfoActivity.this)
|
imgvCover.post(() -> Glide.with(FeedInfoActivity.this)
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -200,11 +200,11 @@ public class AllEpisodesRecycleAdapter extends RecyclerView.Adapter<AllEpisodesR
|
|||||||
holder.butSecondary.setOnClickListener(secondaryActionListener);
|
holder.butSecondary.setOnClickListener(secondaryActionListener);
|
||||||
|
|
||||||
Glide.with(mainActivityRef.get())
|
Glide.with(mainActivityRef.get())
|
||||||
.load(item.getImageUri())
|
.load(item.getImageLocation())
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.fitCenter()
|
.fitCenter()
|
||||||
.dontAnimate()
|
.dontAnimate()
|
||||||
.into(new CoverTarget(item.getFeed().getImageUri(), holder.placeholder, holder.cover, mainActivityRef.get()));
|
.into(new CoverTarget(item.getFeed().getImageLocation(), holder.placeholder, holder.cover, mainActivityRef.get()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -18,12 +18,12 @@ import de.danoeh.antennapod.core.glide.ApGlideSettings;
|
|||||||
|
|
||||||
class CoverTarget extends GlideDrawableImageViewTarget {
|
class CoverTarget extends GlideDrawableImageViewTarget {
|
||||||
|
|
||||||
private final WeakReference<Uri> fallback;
|
private final WeakReference<String> fallback;
|
||||||
private final WeakReference<TextView> placeholder;
|
private final WeakReference<TextView> placeholder;
|
||||||
private final WeakReference<ImageView> cover;
|
private final WeakReference<ImageView> cover;
|
||||||
private final WeakReference<MainActivity> mainActivity;
|
private final WeakReference<MainActivity> mainActivity;
|
||||||
|
|
||||||
public CoverTarget(Uri fallbackUri, TextView txtvPlaceholder, ImageView imgvCover, MainActivity activity) {
|
public CoverTarget(String fallbackUri, TextView txtvPlaceholder, ImageView imgvCover, MainActivity activity) {
|
||||||
super(imgvCover);
|
super(imgvCover);
|
||||||
fallback = new WeakReference<>(fallbackUri);
|
fallback = new WeakReference<>(fallbackUri);
|
||||||
placeholder = new WeakReference<>(txtvPlaceholder);
|
placeholder = new WeakReference<>(txtvPlaceholder);
|
||||||
@ -33,7 +33,7 @@ class CoverTarget extends GlideDrawableImageViewTarget {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onLoadFailed(Exception e, Drawable errorDrawable) {
|
public void onLoadFailed(Exception e, Drawable errorDrawable) {
|
||||||
Uri fallbackUri = fallback.get();
|
String fallbackUri = fallback.get();
|
||||||
TextView txtvPlaceholder = placeholder.get();
|
TextView txtvPlaceholder = placeholder.get();
|
||||||
ImageView imgvCover = cover.get();
|
ImageView imgvCover = cover.get();
|
||||||
if (fallbackUri != null && txtvPlaceholder != null && imgvCover != null) {
|
if (fallbackUri != null && txtvPlaceholder != null && imgvCover != null) {
|
||||||
|
@ -77,7 +77,7 @@ public class DownloadedEpisodesListAdapter extends BaseAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Glide.with(context)
|
Glide.with(context)
|
||||||
.load(item.getImageUri())
|
.load(item.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -324,7 +324,7 @@ public class NavListAdapter extends BaseAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
Glide.with(context)
|
Glide.with(context)
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -296,11 +296,11 @@ public class QueueRecyclerAdapter extends RecyclerView.Adapter<QueueRecyclerAdap
|
|||||||
butSecondary.setOnClickListener(secondaryActionListener);
|
butSecondary.setOnClickListener(secondaryActionListener);
|
||||||
|
|
||||||
Glide.with(mainActivity.get())
|
Glide.with(mainActivity.get())
|
||||||
.load(item.getImageUri())
|
.load(item.getImageLocation())
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.fitCenter()
|
.fitCenter()
|
||||||
.dontAnimate()
|
.dontAnimate()
|
||||||
.into(new CoverTarget(item.getFeed().getImageUri(), placeholder, cover, mainActivity.get()));
|
.into(new CoverTarget(item.getFeed().getImageLocation(), placeholder, cover, mainActivity.get()));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -80,7 +80,7 @@ public class SearchlistAdapter extends BaseAdapter {
|
|||||||
holder.subtitle.setVisibility(View.GONE);
|
holder.subtitle.setVisibility(View.GONE);
|
||||||
|
|
||||||
Glide.with(context)
|
Glide.with(context)
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
@ -97,7 +97,7 @@ public class SearchlistAdapter extends BaseAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Glide.with(context)
|
Glide.with(context)
|
||||||
.load(item.getFeed().getImageUri())
|
.load(item.getFeed().getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -9,11 +9,9 @@ import android.widget.ImageView;
|
|||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import com.bumptech.glide.Glide;
|
import com.bumptech.glide.Glide;
|
||||||
import com.joanzapata.iconify.widget.IconTextView;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
import de.danoeh.antennapod.R;
|
import de.danoeh.antennapod.R;
|
||||||
import de.danoeh.antennapod.core.feed.Feed;
|
import de.danoeh.antennapod.core.feed.Feed;
|
||||||
@ -69,7 +67,7 @@ public class StatisticsListAdapter extends BaseAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Glide.with(context)
|
Glide.with(context)
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
package de.danoeh.antennapod.adapter;
|
package de.danoeh.antennapod.adapter;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.net.Uri;
|
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.util.Log;
|
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
@ -107,7 +105,7 @@ public class SubscriptionsAdapter extends BaseAdapter implements AdapterView.OnI
|
|||||||
holder.count.setPrimaryText(String.valueOf(itemAccess.getFeedCounter(feed.getId())));
|
holder.count.setPrimaryText(String.valueOf(itemAccess.getFeedCounter(feed.getId())));
|
||||||
holder.count.setVisibility(View.VISIBLE);
|
holder.count.setVisibility(View.VISIBLE);
|
||||||
Glide.with(mainActivityRef.get())
|
Glide.with(mainActivityRef.get())
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.fitCenter()
|
.fitCenter()
|
||||||
|
@ -67,7 +67,7 @@ public class CoverFragment extends Fragment implements MediaplayerInfoContentFra
|
|||||||
txtvPodcastTitle.setText(media.getFeedTitle());
|
txtvPodcastTitle.setText(media.getFeedTitle());
|
||||||
txtvEpisodeTitle.setText(media.getEpisodeTitle());
|
txtvEpisodeTitle.setText(media.getEpisodeTitle());
|
||||||
Glide.with(this)
|
Glide.with(this)
|
||||||
.load(media.getImageUri())
|
.load(media.getImageLocation())
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.dontAnimate()
|
.dontAnimate()
|
||||||
.fitCenter()
|
.fitCenter()
|
||||||
|
@ -163,7 +163,7 @@ public class ExternalPlayerFragment extends Fragment {
|
|||||||
((double) controller.getPosition() / controller.getDuration() * 100));
|
((double) controller.getPosition() / controller.getDuration() * 100));
|
||||||
|
|
||||||
Glide.with(getActivity())
|
Glide.with(getActivity())
|
||||||
.load(media.getImageUri())
|
.load(media.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -44,9 +44,7 @@ import de.danoeh.antennapod.activity.MainActivity;
|
|||||||
import de.danoeh.antennapod.adapter.DefaultActionButtonCallback;
|
import de.danoeh.antennapod.adapter.DefaultActionButtonCallback;
|
||||||
import de.danoeh.antennapod.core.event.DownloadEvent;
|
import de.danoeh.antennapod.core.event.DownloadEvent;
|
||||||
import de.danoeh.antennapod.core.event.DownloaderUpdate;
|
import de.danoeh.antennapod.core.event.DownloaderUpdate;
|
||||||
import de.danoeh.antennapod.core.event.FavoritesEvent;
|
|
||||||
import de.danoeh.antennapod.core.event.FeedItemEvent;
|
import de.danoeh.antennapod.core.event.FeedItemEvent;
|
||||||
import de.danoeh.antennapod.core.event.QueueEvent;
|
|
||||||
import de.danoeh.antennapod.core.feed.EventDistributor;
|
import de.danoeh.antennapod.core.feed.EventDistributor;
|
||||||
import de.danoeh.antennapod.core.feed.FeedItem;
|
import de.danoeh.antennapod.core.feed.FeedItem;
|
||||||
import de.danoeh.antennapod.core.feed.FeedMedia;
|
import de.danoeh.antennapod.core.feed.FeedMedia;
|
||||||
@ -374,7 +372,7 @@ public class ItemFragment extends Fragment implements OnSwipeGesture {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Glide.with(getActivity())
|
Glide.with(getActivity())
|
||||||
.load(item.getImageUri())
|
.load(item.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -513,7 +513,7 @@ public class ItemlistFragment extends ListFragment {
|
|||||||
imgvBackground.setColorFilter(new LightingColorFilter(0xff828282, 0x000000));
|
imgvBackground.setColorFilter(new LightingColorFilter(0xff828282, 0x000000));
|
||||||
|
|
||||||
Glide.with(getActivity())
|
Glide.with(getActivity())
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.image_readability_tint)
|
.placeholder(R.color.image_readability_tint)
|
||||||
.error(R.color.image_readability_tint)
|
.error(R.color.image_readability_tint)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
@ -522,7 +522,7 @@ public class ItemlistFragment extends ListFragment {
|
|||||||
.into(imgvBackground);
|
.into(imgvBackground);
|
||||||
|
|
||||||
Glide.with(getActivity())
|
Glide.with(getActivity())
|
||||||
.load(feed.getImageUri())
|
.load(feed.getImageLocation())
|
||||||
.placeholder(R.color.light_gray)
|
.placeholder(R.color.light_gray)
|
||||||
.error(R.color.light_gray)
|
.error(R.color.light_gray)
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package de.danoeh.antennapod.core.asynctask;
|
package de.danoeh.antennapod.core.asynctask;
|
||||||
|
|
||||||
import android.net.Uri;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Classes that implement this interface provide access to an image resource that can
|
* Classes that implement this interface provide access to an image resource that can
|
||||||
* be loaded by the Picasso library.
|
* be loaded by the Picasso library.
|
||||||
@ -9,29 +7,9 @@ import android.net.Uri;
|
|||||||
public interface ImageResource {
|
public interface ImageResource {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This scheme should be used by PicassoImageResources to
|
* Returns the location of the image or null if no image is available.
|
||||||
* indicate that the image Uri points to a file that is not an image
|
|
||||||
* (e.g. a media file). This workaround is needed so that the Picasso library
|
|
||||||
* loads these Uri with a Downloader instead of trying to load it directly.
|
|
||||||
* <p/>
|
* <p/>
|
||||||
* For example implementations, see FeedMedia or ExternalMedia.
|
* The location can either be an URL or a local path
|
||||||
*/
|
*/
|
||||||
String SCHEME_MEDIA = "media";
|
String getImageLocation();
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parameter key for an encoded fallback Uri. This Uri MUST point to a local image file
|
|
||||||
*/
|
|
||||||
String PARAM_FALLBACK = "fallback";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a Uri to the image or null if no image is available.
|
|
||||||
* <p/>
|
|
||||||
* The Uri can either be an HTTP-URL, a URL pointing to a local image file or
|
|
||||||
* a non-image file (see SCHEME_MEDIA for more details).
|
|
||||||
* <p/>
|
|
||||||
* The Uri can also have an optional fallback-URL if loading the default URL
|
|
||||||
* failed (see PARAM_FALLBACK).
|
|
||||||
*/
|
|
||||||
Uri getImageUri();
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ import android.content.SharedPreferences;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import com.google.android.gms.cast.MediaInfo;
|
import com.google.android.gms.cast.MediaInfo;
|
||||||
@ -267,11 +268,9 @@ public class RemoteMedia implements Playable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Uri getImageUri() {
|
@Nullable
|
||||||
if (imageUrl != null) {
|
public String getImageLocation() {
|
||||||
return Uri.parse(imageUrl);
|
return imageUrl;
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -2,7 +2,6 @@ package de.danoeh.antennapod.core.feed;
|
|||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
|
||||||
import android.support.annotation.Nullable;
|
import android.support.annotation.Nullable;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
@ -501,9 +500,9 @@ public class Feed extends FeedFile implements FlattrThing, ImageResource {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Uri getImageUri() {
|
public String getImageLocation() {
|
||||||
if (image != null) {
|
if (image != null) {
|
||||||
return image.getImageUri();
|
return image.getImageLocation();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package de.danoeh.antennapod.core.feed;
|
package de.danoeh.antennapod.core.feed;
|
||||||
|
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
||||||
@ -81,11 +80,11 @@ public class FeedImage extends FeedFile implements ImageResource {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Uri getImageUri() {
|
public String getImageLocation() {
|
||||||
if (file_url != null && downloaded) {
|
if (file_url != null && downloaded) {
|
||||||
return Uri.fromFile(new File(file_url));
|
return new File(file_url).getAbsolutePath();
|
||||||
} else if(download_url != null) {
|
} else if(download_url != null) {
|
||||||
return Uri.parse(download_url);
|
return download_url;
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package de.danoeh.antennapod.core.feed;
|
package de.danoeh.antennapod.core.feed;
|
||||||
|
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
@ -374,13 +373,13 @@ public class FeedItem extends FeedComponent implements ShownotesProvider, Flattr
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Uri getImageUri() {
|
public String getImageLocation() {
|
||||||
if(media != null && media.hasEmbeddedPicture()) {
|
if(media != null && media.hasEmbeddedPicture()) {
|
||||||
return media.getImageUri();
|
return media.getImageLocation();
|
||||||
} else if (image != null) {
|
} else if (image != null) {
|
||||||
return image.getImageUri();
|
return image.getImageLocation();
|
||||||
} else if (feed != null) {
|
} else if (feed != null) {
|
||||||
return feed.getImageUri();
|
return feed.getImageLocation();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -988,12 +988,12 @@ public class PlaybackService extends Service {
|
|||||||
builder.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_TITLE, p.getEpisodeTitle());
|
builder.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_TITLE, p.getEpisodeTitle());
|
||||||
builder.putString(MediaMetadataCompat.METADATA_KEY_ALBUM, p.getFeedTitle());
|
builder.putString(MediaMetadataCompat.METADATA_KEY_ALBUM, p.getFeedTitle());
|
||||||
|
|
||||||
if (p.getImageUri() != null && UserPreferences.setLockscreenBackground()) {
|
if (p.getImageLocation() != null && UserPreferences.setLockscreenBackground()) {
|
||||||
builder.putString(MediaMetadataCompat.METADATA_KEY_ART_URI, p.getImageUri().toString());
|
builder.putString(MediaMetadataCompat.METADATA_KEY_ART_URI, p.getImageLocation().toString());
|
||||||
try {
|
try {
|
||||||
if (isCasting) {
|
if (isCasting) {
|
||||||
Bitmap art = Glide.with(this)
|
Bitmap art = Glide.with(this)
|
||||||
.load(p.getImageUri())
|
.load(p.getImageLocation())
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.into(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL)
|
.into(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL)
|
||||||
@ -1003,7 +1003,7 @@ public class PlaybackService extends Service {
|
|||||||
WindowManager wm = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
|
WindowManager wm = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
|
||||||
Display display = wm.getDefaultDisplay();
|
Display display = wm.getDefaultDisplay();
|
||||||
Bitmap art = Glide.with(this)
|
Bitmap art = Glide.with(this)
|
||||||
.load(p.getImageUri())
|
.load(p.getImageLocation())
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.centerCrop()
|
.centerCrop()
|
||||||
@ -1052,7 +1052,7 @@ public class PlaybackService extends Service {
|
|||||||
android.R.dimen.notification_large_icon_width);
|
android.R.dimen.notification_large_icon_width);
|
||||||
try {
|
try {
|
||||||
icon = Glide.with(PlaybackService.this)
|
icon = Glide.with(PlaybackService.this)
|
||||||
.load(info.playable.getImageUri())
|
.load(info.playable.getImageLocation())
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(ApGlideSettings.AP_DISK_CACHE_STRATEGY)
|
||||||
.centerCrop()
|
.centerCrop()
|
||||||
|
@ -3,7 +3,6 @@ package de.danoeh.antennapod.core.util.playback;
|
|||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.SharedPreferences.Editor;
|
import android.content.SharedPreferences.Editor;
|
||||||
import android.media.MediaMetadataRetriever;
|
import android.media.MediaMetadataRetriever;
|
||||||
import android.net.Uri;
|
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
|
||||||
@ -242,9 +241,9 @@ public class ExternalMedia implements Playable {
|
|||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Uri getImageUri() {
|
public String getImageLocation() {
|
||||||
if (localFileAvailable()) {
|
if (localFileAvailable()) {
|
||||||
return new Uri.Builder().scheme(SCHEME_MEDIA).encodedPath(getLocalMediaUrl()).build();
|
return getLocalMediaUrl();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user