Back to project page Geoloqi-Android-Geotracks.
The source code is released under:
GNU General Public License
If you think the Android project Geoloqi-Android-Geotracks 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.geoloqi.geotracks.widget; // www. j a va 2s . c o m import android.widget.ImageView; import android.widget.ListView; /** * A basic container class used to cache row * values for a {@link ListView} item that includes * an ImageView and a remote image url. * * @author Tristan Waddington */ public class ImageViewHolder extends BaseViewHolder { public String imageUrl; public ImageView image; }