Thank You @Aleksei
it prints the size not text, all the elements has only class name no text at all so how can i click on 6th element.
for last element i used below code and it works fine.
List webElements = driver.findElements(By.xpath("//android.view.ViewGroup"));
WebElement lastElement = Iterables.getLast(webElements, driver.findElement(By.xpath("//android.view.ViewGroup")));
lastElement.click();