1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.beloo.widget.chipslayoutmanager.layouter.criteria;
|
| import com.beloo.widget.chipslayoutmanager.layouter.AbstractLayouter;
|
| /** when using this criteria {@link AbstractLayouter} doesn't able to finish himself, you should only stop calling placeView outside */
| class InfiniteCriteria implements IFinishingCriteria {
|
| @Override
| public boolean isFinishedLayouting(AbstractLayouter abstractLayouter) {
| return false;
| }
|
| }
|
|