staggeredGridLayoutManager сортировать каждый раз по-разному - PullRequest
0 голосов
/ 05 сентября 2018

Я использую staggeredGridLayoutManager для сортировки своих неорганизованных предметов, но иногда это происходит не так, как я хочу some times shows like this and this is what i want to

but some times it shows like this

и вот как использовать staggeredGridLayoutManager

        StaggeredGridLayoutManager staggeredGridLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);

        instantCategoryList.setItemAnimator(new DefaultItemAnimator());
        instantCategoryList.setAdapter(instantCategoryAdapter);
        instantCategoryList.setHasFixedSize(true); //Size of RV will not change
        instantCategoryList.setLayoutManager(staggeredGridLayoutManager);
        staggeredGridLayoutManager.invalidateSpanAssignments();
        instantCategoryList.setNestedScrollingEnabled(false);
...