I want to access the child of a widget created by a LayoutInflater in order to change the text displayed by a TextView inside it. How could I do this? I've made a diagram to explain.
LinearLayout
--->LayoutInflater
---->LinearLayout
---->LinearLayout
---->TextView
---->TextView
---->LinearLayout
---->LinearLayout
---->TextView
---->TextView
---->LinearLayout
---->LinearLayout
---->TextView
---->TextView
etc
I want to be able to access each individual TextView and change it's attributes.