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;
}