Android Open Source - android-tickerlistview Product Structure






From Project

Back to project page android-tickerlistview.

License

The source code is released under:

MIT License

If you think the Android project android-tickerlistview 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.wahibhaq.tickerlistview;
 /*from   w w w  . j  av  a  2  s.  com*/
 
public class ProductStructure{
 
public String id;
public String product_title;
public int img_resource_product;

/**
 * 
 * Model class which defines the items to be shown in list view
 * 
 * @param p_id
 * @param p_title
 * @param p_img_product
 */
public ProductStructure(String p_id, String p_title, int p_img_product) {

  id = p_id;
  product_title = p_title;
  img_resource_product = p_img_product;

}
 
}




Java Source Code List

com.wahibhaq.tickerlistview.ProductListAdapter.java
com.wahibhaq.tickerlistview.ProductStructure.java
com.wahibhaq.tickerlistview.TickerListViewActivity.java