BaseAdapter OnItemClickListener never called

后端 未结 2 1586
一整个雨季
一整个雨季 2021-01-28 20:49

I have a custom BaseAdapter for my ListView in which i implements AdapterView.OnItemClickListener.

The problem is the onItem

2条回答
  •  北恋
    北恋 (楼主)
    2021-01-28 21:08

    Why would you have an OnItemClickListener inside the Adapter?! Either you have OnClickListener inside the Adapter, or the best practice is to set OnItemClickListener to the ListView or whatever AdapterView you use in your activity/fragment. The way you are doing it right now, it won't work for several reasons:

    1. You don't set the listener to the view.
    2. You CAN NOT set an OnItemClickListener to a TextView.
    3. Setting onClickListener to the TextView inside the adapter class, means that you will have to click the TextView itself, otherwise, the listener WILL NOT be invoked.

提交回复
热议问题