Reputation: 139
I have couple of EditText
inputs at view. But a few of them is hidden under screen and need to scroll to see them. How can I get all EditText
elements in my view (also this hidden under screen).
I tried:
_app.Query(q => a.All().Class(EditText));
But returns much more elements than is visible (return 96 should be 12) What is the proper query?
Upvotes: 1
Views: 748