if you have same ids then you can use (xPath is always the slowest possible method):
// android
@AndroidFindBy(id = "your_id")
private List<AndroidElement> your_el_list;
@AndroidFindBy(uiAutomator = "new UiSelector().resourceIdMatches(\".*id/your_id\")")
private List<AndroidElement> your_el_list;
// iOS
@iOSXCUITFindBy(id = "your_id")
private List<IOSElement> your_el_list;