Back to project page android-listview-custom-view.
The source code is released under:
MIT License
If you think the Android project android-listview-custom-view 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.bignerdranch.android.listitemviewdemo; /* www . j a v a 2s.co m*/ public class Item { private String mImageUrl; private String mTitle; private String mDescription; public Item(String imageUrl, String title, String description) { super(); mImageUrl = imageUrl; mTitle = title; mDescription = description; } public String getImageUrl() { return mImageUrl; } public void setImageUrl(String imageUrl) { mImageUrl = imageUrl; } public String getTitle() { return mTitle; } public void setTitle(String title) { mTitle = title; } public String getDescription() { return mDescription; } public void setDescription(String description) { mDescription = description; } }