android - Update recycle view -
i have trouble recycleview. want update recycleview using diffutil. can't understand why not work. diffutil public class consumablediffcallback extends diffutil.callback { private list<consumablebytask> oldlistofconsumablebytask; private list<consumablebytask> newlistofconsumablebytask; @override public boolean areitemsthesame(int olditemposition, int newitemposition) { return oldlistofconsumablebytask.get(olditemposition).getquantity() != newlistofconsumablebytask.get(newitemposition).getquantity(); } @override public boolean arecontentsthesame(int olditemposition, int newitemposition) { return oldlistofconsumablebytask.get(olditemposition).equals(newlistofconsumablebytask.get(newitemposition)); }} my adapter holder public class consumeholder extends recyclerview.viewholder { private button addconsumebtn; public consumeholder(view itemview) { /** * add/change data , send server. * after close consumablesbytas...