I know how I can replace Items using Collections class but I wanna move Item but not replace any Items
List<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list.add("D");
/*
Outputs
{A,B,C,D}
I wanna move C to 0 on list and move A to 1 on list like this
{C,A,B,D}
*/
in fact I have comments List and I wanna show user comments first in recyclerview like Youtube.