@willosser - Sure.
I am running my suites in Android device through Macintosh machine.
I am swiping till the text is displayed.
Here is the code -
public static void scrollDown(WebElement scroll, String text)
{
JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap<String, String> scrollObject = new HashMap<String, String>();
scrollObject.put("direction", "down");
scrollObject.put("text", text);
js.executeScript("mobile: scroll", scrollObject);
scrollObject.put("element", ((RemoteWebElement) scroll).getId());
}