I\'m trying to implement a simple collection widget for my application, i\'m trying to show a ListView inside a widget but the ListView is stuck at Loa
ListView
Change the return count of getViewTypeCount to 1.
getViewTypeCount
getViewTypeCount is the number of types of Views that will be returned by the factory.
@Override public int getViewTypeCount() { return 1; }
I had same problem because I put custom view in list row, try to remove them if you have.