here is my java code i want to store all the image in drawable folder and access it through recyclerview so i created a list of array but it shows error missing ','
is getImages will return images
public static int[] getImages() {
int[] images =
{R.drawable.1,
R.drawable.2,
R.drawable.3,
R.drawable.4,
R.drawable.5,
R.drawable.6,
R.drawable.7,
R.drawable.8,
R.drawable.9,
R.drawable.10,
R.drawable.11};
return images;
}