I am trying to implement a FAQ screen in my project and I wanted to use ExpandableListView. I display the question as text in GroupView and answer as text in ChildView. If the elements can fit into the screen, there is no problem, it works as it should. But when there are more elements than the height of the screen, and I have to scroll, there is such a problem that when I expand the last element, it acts as expanded, but I can not switch to the child view.
Any ideas or experience on this issue?
Here is a screenshot (as you can see, the scrollbar shows that it has been expanded and there is a place to scroll, but when I try to scroll, itβs out of luck):

EDIT: I found out that this problem is due to the fact that I am using the internal child of the WebView, when I switched to TextView, it works as expected. How can I achieve the same result using WebView?
source share