I'm trying to change one TextView in any view in my ListView,
And I already got one Adapter set so I can't use adapters for this.
I tried to do it in a "for" statement, using
mListView.getChildAt(i)
but it didn't worked.
when I tried to do it inside the OnItemClick method, using arg1 instead of
mListView.getChildAt(i), it worked for the item I clicked.
But i need it to happen without clicking on an item,
So my question is: What is the value of Arg1 and Arg2?
I know what they represent, but I want to know what value do they get when I click on an item.
Thanks.