How to scroll and find the text is present in the view

Not able to find hope to find a particular text in the view.i am n to able to scroll so to toe find the text.

Can you show the code you are using to scroll? Are you using TouchAction api?

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