Recyclerview复选框状态发生变化

时间:2017-11-23 09:03:54

标签: android button fragment

我的片段中有浮动操作按钮。如何使用此浮动操作按钮启用或禁用recyclerview内的复选框。回收器视图和浮动操作按钮都在同一个片段活动中。此外,我需要在recyclelerview滚动时隐藏此浮动操作按钮。

1 个答案:

答案 0 :(得分:0)

例如,如果您想要在片段中添加某些内容,可以执行以下操作:

LinearLayout linearLayoutFragment = (LinearLayout)findViewById(R.id.fragmentLayout);
Button button = (Button)findViewById(R.id.buttonid);
button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
           //if you want to add something to your Linearlayout fragment
           //remove all views for example
           linearLayoutFragment.removeAllViews();
        }
 });