There are 4 items of RecyclerView click implemented on LinerLayout , if the user clicks on one of the items, it is necessary that within 3 seconds the clicks of all items are disabled, how to be?
UPD
Click an item from the RecyclerView adapter
holder.linearClick.setOnClickListener(new View.OnClickListener() { @Override public void onClick(final View view) { // code } }); It is to this click that I need to set the shutdown of items for 3 seconds. I made a simple .setEnabled(false) and the clicked click is inactive, but the other 3 are active. I need to disable the entire array in the recycle adapter
ViewPagerin which it is all located. - McDaggen