Skip to content Skip to sidebar Skip to footer

Add Multiple Arraylists To Recyclerview

I am trying to list text and images in a list format in the recyclerview and display in each row this my code and I know its wrong cause its only showing one row how must I edit th

Solution 1:

You are iterating the loop only 1 time .

for (int i = 0; i < 1; i ++ ) {
                    /\
                    ||
                 Iterate it more times
}

Like

for (int i = 0; i < n; i ++ ) {// n timesor as much as you want 

}

Solution 2:

Post a Comment for "Add Multiple Arraylists To Recyclerview"