Android Copy ArrayList variable to another

newObject = new ArrayList(oldObject);

OR

newObject = (ArrayList)oldObject.clone();

 

Author: bm on May 26, 2015
Category: Android, ArrayList