use of com.comcast.freeflow.layouts.FreeFlowLayout.FreeFlowLayoutParams in project FreeFlow by Comcast.
the class VLayout method setLayoutParams.
@Override
public void setLayoutParams(FreeFlowLayoutParams params) {
if (params.equals(this.layoutParams)) {
return;
}
LayoutParams lp = (LayoutParams) params;
this.itemHeight = lp.itemHeight;
this.headerWidth = lp.headerWidth;
this.headerHeight = lp.headerHeight;
cellBufferSize = bufferCount * cellBufferSize;
}
use of com.comcast.freeflow.layouts.FreeFlowLayout.FreeFlowLayoutParams in project FreeFlow by Comcast.
the class HGridLayout method setLayoutParams.
@Override
public void setLayoutParams(FreeFlowLayoutParams params) {
if (params.equals(this.layoutParams)) {
return;
}
LayoutParams lp = (LayoutParams) params;
this.itemWidth = lp.itemWidth;
this.itemHeight = lp.itemHeight;
this.headerWidth = lp.headerWidth;
this.headerHeight = lp.headerHeight;
cellBufferSize = bufferCount * cellBufferSize;
}
Aggregations