If I understand what you mean, you can make one of these decisions:
Write down one big test to check all the required views without any interruption:
@Test
public void checkIfMainActivityViewsAreProperlyDisplayed() {
//Check if activity name is visible on Toolbar
onView(withText(R.string.action_main)).check(matches(withParent(withId(R.id.toolbar))));
//Check if ListView is visible at least 50 percent
onView(withId(R.id.mListView)).check(matches(isDisplayingAtLeast(50)));
//Check if order Checkbox is checked. Perform check.
onView(withId(R.id.mCheckBox))
.check(matches(isNotChecked()))
.perform(ViewActions.click())
.check(matches(isChecked()));
}
Use comments to make your code more readable to others.
, .
,