All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.android.http.RemoteFileService Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.http;

import android.widget.ImageView;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
 * User: serso
 * Date: 6/2/12
 * Time: 11:18 PM
 */
public interface RemoteFileService {

    void loadImage(@NotNull String uri,
                   @NotNull ImageView imageView,
                   @Nullable Integer defaultImageId);

    void loadImage(@NotNull String uri,
                   @NotNull OnImageLoadedListener imageLoadedListener);

    void loadImage(@NotNull String uri);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy