com.bumptech.glide.manager.FirstFrameWaiter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glide Show documentation
Show all versions of glide Show documentation
A fast and efficient image loading library for Android focused on smooth scrolling.
package com.bumptech.glide.manager;
import android.app.Activity;
import android.os.Build;
import androidx.annotation.RequiresApi;
@RequiresApi(Build.VERSION_CODES.O)
final class FirstFrameWaiter implements FrameWaiter {
@Override
public void registerSelf(Activity activity) {}
}