Advertisement
minafaw3

ProductAdapter

Nov 24th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1.  
  2.  
  3. import android.app.Activity;
  4. import android.content.Context;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8. import android.widget.ArrayAdapter;
  9. import android.widget.ImageView;
  10. import android.widget.TextView;
  11.  
  12. import com.tech4life.dogville.Model.ProductsModel;
  13. import com.tech4life.dogville.R;
  14.  
  15.  
  16. public class ProductAdapter extends ArrayAdapter<ProductsModel>{
  17.  
  18. Context context ;
  19. int layoutResourceId;
  20. ProductsModel data[] = null;
  21.  
  22. public ProductAdapter(Context context , int layoutResourceId ,ProductsModel[] data)
  23. {
  24. super( context, layoutResourceId, data );
  25. this.layoutResourceId = layoutResourceId;
  26. this.context = context;
  27. this.data = data;
  28. }
  29.  
  30. @Override
  31. public View getView(int position, View convertView, ViewGroup parent) {
  32. View row = convertView;
  33. OfferHolder holder = null;
  34.  
  35. if(row == null)
  36. {
  37. LayoutInflater inflater = ((Activity)context).getLayoutInflater();
  38. row = inflater.inflate(layoutResourceId, parent, false);
  39.  
  40. holder = new OfferHolder();
  41. holder.image = (ImageView)row.findViewById(R.id.image);
  42. holder.name =(TextView)row.findViewById(R.id.name2);
  43. row.setTag(holder);
  44. }
  45. else
  46. {
  47. holder = (OfferHolder)row.getTag();
  48. }
  49.  
  50. ProductsModel product = data[position];
  51. holder.name.setText(product.getProductName());
  52. holder.image.setImageDrawable(product.getImage());
  53. return row;
  54. }
  55.  
  56. static class OfferHolder
  57. {
  58. ImageView image;
  59. TextView name;
  60. }
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement