Crash in ListView at AbsListView.obtainView for ListActivity
Solution 1:
I had a similar stack trace and discovered that I was returning a null from my getView() method in certain cases.
Solution 2:
If you have a list and extend BaseAdapter or Adapter to get a custom list, make sure that getView returns a non-null value.
If you have a tabbed view and one of your fragment is a list that override Adapter/BaseAdapter and getView returns null you will get this problem.