FBNativeAdAdapter icon indicating copy to clipboard operation
FBNativeAdAdapter copied to clipboard

.enableSpanRow(lm) isn't working

Open Luklek opened this issue 9 years ago • 1 comments

It doesn't span even in your own example app.

Luklek avatar Apr 13 '17 16:04 Luklek

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; } });

Luklek avatar May 06 '17 07:05 Luklek