Java Code Examples for com.bumptech.glide.load.DataSource#LOCAL

The following examples show how to use com.bumptech.glide.load.DataSource#LOCAL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ContactPhotoFetcher.java    From mollyim-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public @NonNull DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 2
Source File: AttachmentStreamLocalUriFetcher.java    From mollyim-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public @NonNull DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 3
Source File: BlurHashModelLoader.java    From mollyim-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public @NonNull DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 4
Source File: AppIconGlideModule.java    From SoloPi with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
    return DataSource.LOCAL;
}
 
Example 5
Source File: ContactPhotoFetcher.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 6
Source File: AttachmentStreamLocalUriFetcher.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 7
Source File: GlideVFSLoader.java    From zom-android-matrix with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
    return DataSource.LOCAL;
}
 
Example 8
Source File: AudioFileCoverFetcher.java    From MusicPlayer with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
    return DataSource.LOCAL;
}
 
Example 9
Source File: AudioFileCoverFetcher.java    From VinylMusicPlayer with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
    return DataSource.LOCAL;
}
 
Example 10
Source File: ContactPhotoFetcher.java    From deltachat-android with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
  return DataSource.LOCAL;
}
 
Example 11
Source File: GlideVFSLoader.java    From Zom-Android-XMPP with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public DataSource getDataSource() {
    return DataSource.LOCAL;
}