Hi,
Maybe your need a map to store your image & string.
ex:

Map<Image,String> collections = new HashMap<>();
collections.add(img1,"text1");
collection.add(img2,"text2");
... so on.
...