I have an array of strings but the values in array is changing continuously. Is there any other way of managing the array except removing items and changing index locations?
public String[] deviceId=null;
deviceId=new String[deviceCount];
in my case deviceCount is changes as new device comes. so i continuously need to change array size and add or remove items
dynamic arraysorlinked lists