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
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);
`