I am trying to retrieve the data from mysql and sort it based on the category tab. My application crash when i open the activity with content view not yet created. May I know wh
You can't call getListView() in the onCreateView() because the ListView doesn't exist yet. You need to put that code inside onViewCreated().
getListView()
onCreateView()
onViewCreated()