Android Open Source - android-listview-custom-view Item






From Project

Back to project page android-listview-custom-view.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.android.debug.hv.ViewServer.java
com.bignerdranch.android.listitemviewdemo.ItemAdapter.java
com.bignerdranch.android.listitemviewdemo.ItemListFragment.java
com.bignerdranch.android.listitemviewdemo.ItemView.java
com.bignerdranch.android.listitemviewdemo.Item.java
com.bignerdranch.android.listitemviewdemo.ListActivity.java