Skip to content

Instantly share code, notes, and snippets.

@theonlyanil
Last active April 14, 2018 15:12
Show Gist options
  • Save theonlyanil/fd2ac8483de679760bc82134aef62410 to your computer and use it in GitHub Desktop.
Save theonlyanil/fd2ac8483de679760bc82134aef62410 to your computer and use it in GitHub Desktop.
Make first item in RecyclerView of full width
private final static int NUM_GRIDS = 2;
...
@Override
protected void onCreate(Bundle savedInstanceState) {
// set the layout manager.
GridLayoutManager layoutManager;
layoutManager = new GridLayoutManager(this, NUM_GRIDS);
layoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup()
{
@Override
public int getSpanSize(int position)
{
return position == 0 ? 2 : 1;
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment