这是关于Android UIAutomation的。我有一个GridView显示聊天组的所有500个成员,原因是,它只加载显示项目的当前视口并重用布局元素。对于每个“页面”,它显示35,我想一次滚动一页。
这是代码:
UiObject allMemberGridView = mDevice.findObject(new UiSelector().resourceId("what ever resource id"));
int membersCountInTheView = allMemberGridView.getChildCount();
appView.scrollIntoView(new UiSelector().resourceId("what ever resource id").childSelector(new UiSelector().index(membersCountInTheView - 1)));
它永远不会停止滚动,直到滚动到500个成员的末尾为止,我在这里不明白要点。