Skip to main content

Posts

Showing posts from July, 2017

Expandable ListView in Android on Complex Layout

Hello, Last day while at work I encountered an issue such as when I try to implement a expandable listview the override method "@getChildView" is not being called. When I looked around, I found out that the issue is mainly related to the expandable listview being inside a scrollview or any such complex layouts. I fixed the issue after searching through some answers on stack overflow, I have provided the links of the original answer at the end of the post Response will be of the format { "movie_details": [ { "name": "Fight Club", "type": "Movie", "id": 1 }, { "name": "13 reasons why", "type": "Series", "id": 2 }, { "name": "Dunkirk", "type": "Movie", "id": 3 }, { "name": "Game of thrones", &