com.firebase.ui.storage.images.FirebaseImageLoader Java Examples
The following examples show how to use
com.firebase.ui.storage.images.FirebaseImageLoader.
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: MyAppGlideModule.java From FirebaseUI-Android with Apache License 2.0 | 5 votes |
@Override public void registerComponents(@NonNull Context context, @NonNull Glide glide, @NonNull Registry registry) { // Register FirebaseImageLoader to handle StorageReference registry.append(StorageReference.class, InputStream.class, new FirebaseImageLoader.Factory()); }
Example #2
Source File: CustomAppGlideModule.java From social-app-android with Apache License 2.0 | 4 votes |
@Override public void registerComponents(@NonNull Context context, @NonNull Glide glide, Registry registry) { // Register FirebaseImageLoader to handle StorageReference registry.append(StorageReference.class, InputStream.class, new FirebaseImageLoader.Factory()); }
Example #3
Source File: MyAppGlideModule.java From snippets-android with Apache License 2.0 | 4 votes |
@Override public void registerComponents(Context context, Glide glide, Registry registry) { // Register FirebaseImageLoader to handle StorageReference registry.append(StorageReference.class, InputStream.class, new FirebaseImageLoader.Factory()); }
Example #4
Source File: FirebaseGlideModule.java From doorbell with Apache License 2.0 | 4 votes |
@Override public void registerComponents(Context context, Glide glide, Registry registry) { // Register FirebaseImageLoader to handle StorageReference registry.append(StorageReference.class, InputStream.class, new FirebaseImageLoader.Factory()); }