mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-05 05:20:44 +03:00
Apply the requested changes, use ShareUtils.shareText to share an stream in the play queue and optimize imports for Java files, using Android Studio functionality. Apply the requested changes and do little improvements Apply the requested changes, use ShareUtils.shareText to share an stream in the play queue and optimize imports for Java files, using Android Studio functionality.
48 lines
1.6 KiB
Java
48 lines
1.6 KiB
Java
package org.schabi.newpipe;
|
|
|
|
import android.annotation.SuppressLint;
|
|
import android.content.Context;
|
|
import android.content.SharedPreferences;
|
|
import android.content.res.Resources;
|
|
|
|
import androidx.preference.PreferenceManager;
|
|
|
|
import com.nostra13.universalimageloader.core.download.BaseImageDownloader;
|
|
|
|
import org.schabi.newpipe.extractor.NewPipe;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
public class ImageDownloader extends BaseImageDownloader {
|
|
private final Resources resources;
|
|
private final SharedPreferences preferences;
|
|
private final String downloadThumbnailKey;
|
|
|
|
public ImageDownloader(final Context context) {
|
|
super(context);
|
|
this.resources = context.getResources();
|
|
this.preferences = PreferenceManager.getDefaultSharedPreferences(context);
|
|
this.downloadThumbnailKey = context.getString(R.string.download_thumbnail_key);
|
|
}
|
|
|
|
private boolean isDownloadingThumbnail() {
|
|
return preferences.getBoolean(downloadThumbnailKey, true);
|
|
}
|
|
|
|
@SuppressLint("ResourceType")
|
|
@Override
|
|
public InputStream getStream(final String imageUri, final Object extra) throws IOException {
|
|
if (isDownloadingThumbnail()) {
|
|
return super.getStream(imageUri, extra);
|
|
} else {
|
|
return resources.openRawResource(R.drawable.dummy_thumbnail_dark);
|
|
}
|
|
}
|
|
|
|
protected InputStream getStreamFromNetwork(final String imageUri, final Object extra)
|
|
throws IOException {
|
|
final DownloaderImpl downloader = (DownloaderImpl) NewPipe.getDownloader();
|
|
return downloader.stream(imageUri);
|
|
}
|
|
}
|