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
I struggled as I by mistake put android:inputType="textCapWords" with the textbox after removing it it is fixed
Another solution.
if you have many child-control,and its to trouble to add android:focusable="false"
to every child-control,you can add android:descendantFocusability="blocksDescendants"
to its parent-control.try it.
I was also struggling with this issue and none of the suggested solutions worked. My problem was that I did an override for onViewCreated
but didn't call super.onViewCreated(view, savedInstanceState);
. Hopefully this will help someone else so they don't spend hours trying to figure out what's going on.