FBNativeAdAdapter
FBNativeAdAdapter copied to clipboard
.enableSpanRow(lm) isn't working
It doesn't span even in your own example app.
By the way using the older code from previous versions fixed it. mParam.gridLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() { @Override public int getSpanSize(int position) { if (isAdPosition(position)){ return ssl.getSpanCount(); } return 1; } });