blob: 2519a379a8dba0f48d7f4c4f92e9280b0c1e3ce4 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.providers.media.photopicker.ui;
import android.content.Context;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
import com.android.providers.media.photopicker.data.model.Item;
/**
* A class to assist with loading and managing the Images (i.e. thumbnails and preview) associated
* with item.
*/
public class ImageLoader {
private final Context mContext;
public ImageLoader(Context context) {
mContext = context;
}
public void loadPhotoThumbnail(Item item, ImageView imageView) {
Glide.with(mContext)
.load(item.getContentUri())
.thumbnail()
.into(imageView);
}
public void loadImagePreview(Item item, ImageView imageView) {
// TODO(b/185801129): Load image in background thread. Loading the image blocks loading the
// layout now.
Glide.with(mContext)
.load(item.getContentUri())
.into(imageView);
}
}