Is there a way to iterate through all the views in your Activity? Something like:
Iterator it = getViewIterator(); ...
Does this exi
If you actually need an iterator, there isn't anything like that available in the api. You'll have to write your own that is built on top of the logic that Harry Joy and Javanator suggest.