Use this code
TouchAction act = new TouchAction((MobileDriver)driver);
WebElement el1 = driver.findElement(By.name(""));
WebElement el2 = driver.findElement(By.name(""));
act.press(el1).moveTo(el2).release().perform();
or
act.press(intx, inty).moveTo(intx, inty).release().perform();
//the above code will scroll to the particular element then after find that text by using findElement method