This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; |