Android Open Source - Android-Sample-App Feed Item






From Project

Back to project page Android-Sample-App.

License

The source code is released under:

End-User License Agreement for Sharethrough Software Product This End-User License Agreement (?EULA??) is a legal agreement between you (either an individual or a single entity) (?the End User?...

If you think the Android project Android-Sample-App 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.sharethrough.sample;
/*from   w  w w.  ja  v a 2  s .  c  o  m*/
public class FeedItem {
    public final String title;
    public final String description;
    public final int imageResourceId;

    public FeedItem(int imageResourceId, String title, String description) {
        this.title = title;
        this.description = description;
        this.imageResourceId = imageResourceId;
    }
}




Java Source Code List

com.sharethrough.SampleApplication.java
com.sharethrough.sample.BasicActivity.java
com.sharethrough.sample.DfpActivity.java
com.sharethrough.sample.FeedItem.java
com.sharethrough.sample.ListAdapterWithBasicViewActivity.java
com.sharethrough.sample.MyActivity.java
com.sharethrough.sample.SharethroughListAdapterActivity.java