We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this is main code
FlexboxLayoutManager layoutManager = new FlexboxLayoutManager(this); layoutManager.setFlexWrap(FlexWrap.WRAP); layoutManager.setFlexDirection(FlexDirection.COLUMN);
FlexboxLayoutManager should display all items
com.google.android:flexbox:1.0.0
https://github.com/liangtg/flexbox-test
The text was updated successfully, but these errors were encountered:
Any news ? I have the same problem. Only 16 items of my 26 items are displayed.
Sorry, something went wrong.
@geotinc this solved my problem:
@Override public void onBindViewHolder(@NonNull AdapterViewHolder holder, int position) { FlexboxLayoutManager.LayoutParams lp = (FlexboxLayoutManager.LayoutParams) holder.itemView.getLayoutParams(); lp.width = screenwidth;
fix calculating size of child view, for view with size match_parent (g…
6485d14
…oogle#450)
No branches or pull requests
Issues and steps to reproduce
this is main code
Expected behavior
FlexboxLayoutManager should display all items
Version of the flexbox library
com.google.android:flexbox:1.0.0
Link to code
https://github.com/liangtg/flexbox-test
The text was updated successfully, but these errors were encountered: