I\'m adding TextViews programmatically in a for-loop and add them to an ArrayList.
How do I use TextView.setId(int id)? What Integer ID do I come up wit
TextView.setId(int id)
My Choice:
// Method that could us an unique id int getUniqueId(){ return (int) SystemClock.currentThreadTimeMillis(); }