[Solved] How to rewrite ArrayList in opposite direction [duplicate]


You can just use:

Collections.reverse(viewList);

As documented by Oracle here.

solved How to rewrite ArrayList in opposite direction [duplicate]