Skip to content

Instantly share code, notes, and snippets.

@PhB-fr
PhB-fr / MyIterator.txt
Last active November 28, 2017 12:12
Java / Android | Iterates through a given Layout tree, looking for views matching a certain type (TextView for example).
/* Iterates through the given Layout, looking for TextView
---------------------------------
Author : Philippe Bartolini (PhB-fr @ GitHub)
Link : https://gist.github.com/PhB-fr/e43ba4a5dbd1ed7e1038b9a2393eceeb
Yes another iterator ;) I think it is very adaptable
*/
public void MyIterator(View thisView){
ViewGroup thisViewGroup = null;
boolean isTextView = false;