| |
---|
| | } |
---|
| | |
---|
| | private class CheeseViewHolder { |
---|
| | private TextView titleText; |
---|
| | private ImageView image; |
---|
| | //private TextView itemText; |
---|
| | |
---|
| | //private ImageView image; |
---|
| | |
---|
| | private CheeseViewHolder(View view) { |
---|
| | titleText = (TextView) view.findViewById(R.id.item_title); |
---|
| | image = (ImageView) view.findViewById(R.id.item_img); |
---|
| | //itemText = (TextView) view.findViewById(R.id.item_list); |
---|
| | //image = (ImageView) view.findViewById(R.id.item_img); |
---|
| | } |
---|
| | |
---|
| | void build(String title) { |
---|
| | titleText.setText(title); |
---|
| | //itemText.setText(items); |
---|
| | //image.setImageResource(R.drawable.ic_launcher); |
---|
| | } |
---|
| | } |
---|
| | } |
---|
| | |