[Solved] Unable to show Toast
first of all add both items in list using following code: list.add(model(name, roomid)); Also create a model class for RoomModel like this: public class RoomModel { public String name, id, image, description; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } … Read more