Do you guys know if there's a proper manner to get all specific view types from the parent view as the title says?
I would like to get all the EditText views from my activity, so I wonder if there's a better way than using this solution get all views from an activity and then testing every view to check if it's an EditText or not?
Thank you for the help,
Florian
Approach 1 :
Let's say you named your edittext edittext_0, edittext_1, .. edittext_n. You can do:
Actually the answers specified in the link given, are feasible if you have a large number of views, but if you want a specific type of view from a view/viewgroup, simply use findViewById method. Example :
OPTIONAL READING
Optimised Answer for the answers given in link :
It is easier with Kotlin using for-in loop: