with older Appium versions try to tap first into needed field.
Try bellow code
@SuppressWarnings(“unchecked”)
public boolean ScrollToElement() throws Exception {
boolean bStatus = false;
try {
((AndroidDriver) driver).scrollToExact(“Date”);
((AndroidDriver) driver).scrollToExact("Months ");
((AndroidDriver) driver).scrollToExact(“Year”);
bStatus = true;
Thread.sleep(2000);
}catch(Exception e){
//e.printStackTrace();
bStatus=true;
}
return bStatus;
}
before sendkeys first click than u try given code
.click()
.clear()
.sendkeys(“xyz”)
Thank you @er.pradeep4… for your replay