How do I click on the correct ImageView when there seems to be nothing unique

Using RubyGems
Android Device
Custom App

I would like to click on a specific image that shows up on the screen, but when I look at the Inspector window I see the same android.widget.FrameLayout and the same children android.widget.ImageView multiple times. How would I go about clikcking a specific image? Am I still using a find_element?

Below is an example of the Inspector Window. If I wanted to click on the first Image View how would I do that compared to clicking on the ImageView for (7)android.widget.FrameLayout? All the Classes and resource ids are the same in every instance.

Thanks

Using java

List[WebElements] imageElements = driver.findElements(By.className(android.widget.ImageView));
imageElements.get(7).click();