-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
The size of the grid view is not automatically resized, so it does not expand when configured for wrap_content
Fortunately, I have no more things after the grid view, so I could solve it with the following code, but it is not the most optimal solution.
ViewGroup.LayoutParams lp = gridViewHorario.getLayoutParams();
lp.height = ViewGroup.LayoutParams.MATCH_PARENT;//YOLO
gridViewHorario.setLayoutParams(lp);
Otherwise, no problem. Works correctly.
Metadata
Metadata
Assignees
Labels
No labels