Laura
0
Q:

arraylist objects returning null

//in my case my model class had an empty constructor


//don't
public Item(String img_loc, String name, String price) {
       
    }
    
// do
public Item(String img_loc, String name, String price) {
        this.img_loc = img_loc;
        this.name = name;
        this.price = price;
    }
0

New to Communities?

Join the community