Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dreamteam.app.img; /* www .ja va 2 s .c o m*/ import android.widget.ImageView; public class ImageLoad { private String url; private ImageView imageView; public ImageLoad(String url, ImageView imageView) { this.url = url; this.imageView = imageView; } @Override public String toString() { return "url:" + url ; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public ImageView getImageView() { return imageView; } public void setImageView(ImageView imageView) { this.imageView = imageView; } }