onListItemClick is not working for listview?

前端 未结 9 2171
一整个雨季
一整个雨季 2020-11-30 11:29

Hi onListItemClick for listview is not working. Here i am fetching datas from SQLite using AsyncTask and displaying it in a list view. And i wants to do some actions when a

9条回答
  •  情话喂你
    2020-11-30 12:27

    Only the line below worked for me:

    android:descendantFocusability="blocksDescendants"
    

    The whole list_view_item.xml:

    
    
        
        
        
    
            
            
    
    

    The above is to be used in getView like:

    convertView=LayoutInflater.from(getContext())
        .inflate(R.layout.list_view_item, parent, false);
    

    `

提交回复
热议问题