Please i'm noob in android,i just have been assigned a task and i need to finish it in two days,
I need to set Onclicklistener(this),i received a code from someone,and i had to make changes to it,i'm trying to implement this in Fragment
View sortableHeaderWrappers[]=new View[]{view.findViewById(R.id.date_wrapper),view.findViewById(R.id.status_wrapper)};
And then there's something written as
for(int i=0;i<sortableHeaderWrappers.length;i++)
{
sortableHeaderWrappers[i].setTag((Integer)i);
sortableHeaderWrappers[i].setOnClickListener(this)
}
But i'm not able to use this,i understand you can use getContext() instead of "this",but thats not working as well
Any inputs would be helpful
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…