I am trying to set On Click Listener on the List view. I have used the View holder and Base Adapter for Inflating the List view . I have used following Code:: Myonclicklistneer
myonclicklistneer = new Myonclicklistneer();
listView.setOnItemClickListener(myonclicklistneer);
//Listneer Is
class Myonclicklistneer implements OnItemClickListener
{
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long arg3) {
Log.i("MyLog", "DONE DONE Listneer Is set!!!");
}
}
What is my problem that Listneer is setting and I am Inflating 3 Text View and 1 EditText.Whenever I click on any of the widgets in the row Listener has to be set.