我对ExpandableRecyclerView和RecyclerView有疑问:
我正在尝试使用这两个类的孩子制作一个菜单,但我想我找不到任何可以添加更多“行”的东西,这就是我所做的:
RecyclerView recycler = findViewById(R.id.recycle);
LinearLayoutManager manager= new LinearLayoutManager(this);
RecyclerView.ItemAnimator animator= recycler.getItemAnimator();
((DefaultItemAnimator)animator).setSupportsChangeAnimations(false);
adapter= new ExpandableItemAdapter(setItems());
recycler.setLayoutManager(manager);
recycler.setAdapter(adapter);
adapter= new SingleItemAdapter(this,setSingleItem());
但是当我尝试添加适配器时,它会替换旧版本。 任何人都可以帮助我吗?