I have a ListVie
w inside an AppWidget
. Each row of the ListView
has a custom layout, AppWidget
specifies a minHeight
, as required. The problem is that ListView
exceeds the dimensions of the AppWidget
, and some rows simply hang below the widget boundaries.
I have tried everything I could think of, fixing the height of ListView
, using match_parent
and/or wrap_content
or rows and ListView
, but I have not been able to fix this.
Has someone else faced this problem? How do I make the ListView
fit inside the widget boundaries and scroll, instead of rows getting outside the boundary?