Hi,
Since this is the last ImageButton on the screen, try finding the list of all ImageButtons, get its size and then use get(index) method to click on the last index.
List<WebElement> imgList = driver.findElements(By.xpath(//ImageButton));
int listSize = imgList.size();
//Click
imgList.get(listSize - 1).click();